Node.EventType
Class
Module: cc
The event type supported by Node
Index
Properties
TOUCH_START
String
The event type for touch start event, you can use its value directly: 'touchstart'TOUCH_MOVE
String
The event type for touch move event, you can use its value directly: 'touchmove'TOUCH_END
String
The event type for touch end event, you can use its value directly: 'touchend'TOUCH_CANCEL
String
The event type for touch end event, you can use its value directly: 'touchcancel'MOUSE_DOWN
String
The event type for mouse down events, you can use its value directly: 'mousedown'MOUSE_MOVE
String
The event type for mouse move events, you can use its value directly: 'mousemove'MOUSE_ENTER
String
The event type for mouse enter target events, you can use its value directly: 'mouseenter'MOUSE_LEAVE
String
The event type for mouse leave target events, you can use its value directly: 'mouseleave'MOUSE_UP
String
The event type for mouse up events, you can use its value directly: 'mouseup'MOUSE_WHEEL
String
The event type for mouse wheel events, you can use its value directly: 'mousewheel'POSITION_CHANGED
String
The event type for position change events.ROTATION_CHANGED
String
The event type for rotation change events.SCALE_CHANGED
String
The event type for scale change events.SIZE_CHANGED
String
The event type for size change events.ANCHOR_CHANGED
String
The event type for anchor point change events.COLOR_CHANGED
String
The event type for color change events.CHILD_ADDED
String
The event type for new child added events.CHILD_REMOVED
String
The event type for child removed events.CHILD_REORDER
String
The event type for children reorder events.GROUP_CHANGED
String
The event type for node group changed events.SIBLING_ORDER_CHANGED
String
The event type for node's sibling order changed.
Details
Properties
TOUCH_START
The event type for touch start event, you can use its value directly: 'touchstart'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:264 |
TOUCH_MOVE
The event type for touch move event, you can use its value directly: 'touchmove'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:271 |
TOUCH_END
The event type for touch end event, you can use its value directly: 'touchend'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:278 |
TOUCH_CANCEL
The event type for touch end event, you can use its value directly: 'touchcancel'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:285 |
MOUSE_DOWN
The event type for mouse down events, you can use its value directly: 'mousedown'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:293 |
MOUSE_MOVE
The event type for mouse move events, you can use its value directly: 'mousemove'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:300 |
MOUSE_ENTER
The event type for mouse enter target events, you can use its value directly: 'mouseenter'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:307 |
MOUSE_LEAVE
The event type for mouse leave target events, you can use its value directly: 'mouseleave'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:314 |
MOUSE_UP
The event type for mouse up events, you can use its value directly: 'mouseup'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:321 |
MOUSE_WHEEL
The event type for mouse wheel events, you can use its value directly: 'mousewheel'
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:328 |
POSITION_CHANGED
The event type for position change events. Performance note, this event will be triggered every time corresponding properties being changed, if the event callback have heavy logic it may have great performance impact, try to avoid such scenario.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:336 |
ROTATION_CHANGED
The event type for rotation change events. Performance note, this event will be triggered every time corresponding properties being changed, if the event callback have heavy logic it may have great performance impact, try to avoid such scenario.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:346 |
SCALE_CHANGED
The event type for scale change events. Performance note, this event will be triggered every time corresponding properties being changed, if the event callback have heavy logic it may have great performance impact, try to avoid such scenario.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:356 |
SIZE_CHANGED
The event type for size change events. Performance note, this event will be triggered every time corresponding properties being changed, if the event callback have heavy logic it may have great performance impact, try to avoid such scenario.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:366 |
ANCHOR_CHANGED
The event type for anchor point change events. Performance note, this event will be triggered every time corresponding properties being changed, if the event callback have heavy logic it may have great performance impact, try to avoid such scenario.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:376 |
COLOR_CHANGED
The event type for color change events. Performance note, this event will be triggered every time corresponding properties being changed, if the event callback have heavy logic it may have great performance impact, try to avoid such scenario.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:386 |
CHILD_ADDED
The event type for new child added events.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:396 |
CHILD_REMOVED
The event type for child removed events.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:403 |
CHILD_REORDER
The event type for children reorder events.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:410 |
GROUP_CHANGED
The event type for node group changed events.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:417 |
SIBLING_ORDER_CHANGED
The event type for node's sibling order changed.
meta | description |
---|---|
Type | String |
Defined in | cocos2d/core/CCNode.js:424 |