Difference between revisions of "Event.TOUCHES END"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Available since:''' Gideros 2011.6<br/>
+
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
'''Value:''' touchesEnd<br/>
+
'''<translate>Value</translate>:''' touchesEnd<br/>
=== Description ===
+
=== <translate>Descriptio</translate>n ===
 
<translate>This event is dispatched then touch is ended. It is possible to generate this event using mouse actions, by enabling this option through project settings.
 
<translate>This event is dispatched then touch is ended. It is possible to generate this event using mouse actions, by enabling this option through project settings.
 
    
 
    
Line 11: Line 11:
 
[[Special:MyLanguage/KeyCode.MODIFIER_ALT|KeyCode.MODIFIER_ALT]]
 
[[Special:MyLanguage/KeyCode.MODIFIER_ALT|KeyCode.MODIFIER_ALT]]
 
[[Special:MyLanguage/KeyCode.MODIFIER_META|KeyCode.MODIFIER_META]]</translate>
 
[[Special:MyLanguage/KeyCode.MODIFIER_META|KeyCode.MODIFIER_META]]</translate>
=== Parameters ===
+
=== <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/>
 
'''touch.y''': (number) <translate>y coordinate of the current touch</translate><br/>
 
'''touch.y''': (number) <translate>y coordinate of the current touch</translate><br/>

Revision as of 08:28, 24 August 2018

Available since: Gideros 2011.6
Value: touchesEnd

Description

This event is dispatched then touch is ended. It is possible to generate this event using mouse actions, by enabling this option through project settings.

 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.