Cocos Creator API

1.0.0

Cocos Creator is a highly customizable game development tool that utilizes the power of cocos2d-x.

Event.EventTouch

Extends Event
Module: cc

The touch event

Properties

type String

Inherited from Event:

The name of the event (case-sensitive), e.g. "click", "fire", or "submit".

bubbles Boolean

Inherited from Event:

Indicate whether the event bubbles up through the tree or not.

target Object

Inherited from Event:

A reference to the target to which the event was originally dispatched.

currentTarget Object

Inherited from Event:

A reference to the currently registered target for the event.

eventPhase Number

Inherited from Event:

Indicates which phase of the event flow is currently being evaluated. Returns an integer value represented by 4 constants:

  • Event.NONE = 0
  • Event.CAPTURING_PHASE = 1
  • Event.AT_TARGET = 2
  • Event.BUBBLING_PHASE = 3 The phases are explained in the [section 3.1, Event dispatch and DOM event flow] (http://www.w3.org/TR/DOM-Level-3-Events/#event-flow), of the DOM Level 3 Events specification.

NO_TYPE String readOnly

Inherited from Event:

Code for event without type.

NONE Number readOnly

Inherited from Event:

Events not currently dispatched are in this phase

CAPTURING_PHASE Number readOnly

Inherited from Event:

The capturing phase comprises the journey from the root to the last node before the event target's node see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow

AT_TARGET Number readOnly

Inherited from Event:

The target phase comprises only the event target node see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow

BUBBLING_PHASE Number readOnly

Inherited from Event:

The bubbling phase comprises any subsequent nodes encountered on the return trip to the root of the hierarchy see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow

There are no properties that match your current filter settings. You can change your filter settings in the index section on this page. index

Methods

getEventCode ( ) Number

Returns event code.

returns:

type: Number

getTouches ( ) Array

Returns touches of event.

returns:

type: Array

setLocation
(
  • x
  • y
)

Sets touch location.

name type description
x Number
y Number

getLocation ( ) Vec2

Returns touch location.

returns:

type: Vec2

location

getLocationInView ( ) Vec2

Returns the current touch location in screen coordinates.

returns:

type: Vec2

getPreviousLocation ( ) Vec2

Returns the previous touch location.

returns:

type: Vec2

getStartLocation ( ) Vec2

Returns the start touch location.

returns:

type: Vec2

getID ( ) Number

Returns the id of cc.Touch.

returns:

type: Number

getDelta ( ) Vec2

Returns the delta distance from the previous location to current location.

returns:

type: Vec2

getDeltaX ( ) Number

Returns the X axis delta distance from the previous location to current location.

returns:

type: Number

getDeltaY ( ) Number

Returns the Y axis delta distance from the previous location to current location.

returns:

type: Number

getLocationX ( ) Number

Returns location X axis data.

returns:

type: Number

getLocationY ( ) Number

Returns location Y axis data.

returns:

type: Number

Event
(
  • type
  • bubbles
)
Event

Inherited from Event:

name type description
type String

The name of the event (case-sensitive), e.g. "click", "fire", or "submit"

bubbles Boolean

A boolean indicating whether the event bubbles up through the tree or not

returns:

type: Event

unuse ( ) String

Inherited from Event:

Reset the event for being stored in the object pool.

returns:

type: String

reuse ( ) String

Inherited from Event:

Reuse the event for being used again by the object pool.

returns:

type: String

preventDefault ( )

Inherited from Event:

If invoked when the cancelable attribute value is true, signals to the operation that caused event to be dispatched that it needs to be canceled.

stopPropagation ( )

Inherited from Event:

Stops propagation for current event.

stopPropagationImmediate ( )

Inherited from Event:

Stops propagation for current event immediately, the event won't even be dispatched to the listeners attached in the current target.

isStopped ( ) Boolean

Inherited from Event:

Checks whether the event has been stopped.

returns:

type: Boolean

getCurrentTarget ( ) Node

Inherited from Event:

Gets current target of the event
note: It only be available when the event listener is associated with node.
It returns 0 when the listener is associated with fixed priority.

returns:

type: Node

The target with which the event associates.

getType ( ) String

Inherited from Event:

Gets the event type.

returns:

type: String

There are no methods that match your current filter settings. You can change your filter settings in the index section on this page. index