{{newin|[[0.10.0]]|100|type=function}}
Gets a list of all active touch-presses.

== Function ==
=== Synopsis ===
<source lang="lua">
touches = love.touch.getTouches( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|table|touches|A list of active touch-press id values, which can be used with [[love.touch.getPosition]].}}

== Notes ==
The id values are the same as those used as arguments to [[love.touchpressed]], [[love.touchmoved]], and [[love.touchreleased]].

The id value of a specific touch-press is only guaranteed to be unique for the duration of that touch-press. As soon as [[love.touchreleased]] is called using that id, it may be reused for a new touch-press via [[love.touchpressed]].

== See Also ==
* [[parent::love.touch]]
* [[love.touch.getPosition]]
* [[love.touchpressed]]
* [[love.touchreleased]]
[[Category:Functions]]
{{#set:Description=Gets a list of all active touch-presses.}}
== Other Languages ==
{{i18n|love.touch.getTouches}}