Difference between revisions of "Event.TOUCHES CANCEL"

From GiderosMobile
Line 2: Line 2:
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Value</translate>:''' touchesCancel<br/>
 
'''<translate>Value</translate>:''' touchesCancel<br/>
 +
'''<translate>Defined by</translate>:''' [[Special:MyLanguage/Sprite|Sprite]]<br/>
 
=== <translate>Descriptio</translate>n ===
 
=== <translate>Descriptio</translate>n ===
 
<translate>This event is dispatched when touch is interrupted, for example, by a phone call, or any sort of modal dialog.
 
<translate>This event is dispatched when touch is interrupted, for example, by a phone call, or any sort of modal dialog.
Line 7: Line 8:
  
 
Modifiers can have values of:
 
Modifiers can have values of:
[[Special:MyLanguage/KeyCode.MODIFIER_NONE|KeyCode.MODIFIER_NONE]]
+
`KeyCode.MODIFIER_NONE`
[[Special:MyLanguage/KeyCode.MODIFIER_SHIFT|KeyCode.MODIFIER_SHIFT]]
+
`KeyCode.MODIFIER_SHIFT`
[[Special:MyLanguage/KeyCode.MODIFIER_CTRL|KeyCode.MODIFIER_CTRL]]
+
`KeyCode.MODIFIER_CTRL`
[[Special:MyLanguage/KeyCode.MODIFIER_ALT|KeyCode.MODIFIER_ALT]]
+
`KeyCode.MODIFIER_ALT`
[[Special:MyLanguage/KeyCode.MODIFIER_META|KeyCode.MODIFIER_META]]</translate>
+
`KeyCode.MODIFIER_META`</translate>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''touch.x''': (number) <translate>x coordinate of the current touch</translate><br/>
 
'''touch.x''': (number) <translate>x coordinate of the current touch</translate><br/>

Revision as of 10:29, 24 August 2018

Available since: Gideros 2011.6
Value: touchesCancel
Defined by: Sprite

Description

This event is dispatched when touch is interrupted, for example, by a phone call, or any sort of modal dialog. This event is dispatched only on devices.

Modifiers can have values of: `KeyCode.MODIFIER_NONE` `KeyCode.MODIFIER_SHIFT` `KeyCode.MODIFIER_CTRL` `KeyCode.MODIFIER_ALT` `KeyCode.MODIFIER_META`

Parameters

touch.x: (number) x coordinate of the current touch
touch.y: (number) y coordinate of the current touch
touch.rx: (number) unrounded x coordinate of the touch
touch.ry: (number) unrounded y coordinate of the touch
touch.id: (number) the id of current touch. This number is 1 if this is a first touch, 2 if it is a second, etc.
touch.type: (string) Input type, possible values: finger, pen, mouse, penTablet
touch.pressure: (number) Pressure on screen, 0 if not able to detect
touch.mouseButton: (number) Mouse button which triggered this event, if any
touch.modifiers: (number) Modifiers present
allTouches: (table) lua table containing previously described touch table with x, y, rx, ry and id properties for all touches that are currently on device.