New in pygame 2: This module requires SDL2.
Return the number of available touch devices.
index (int) -- This number is at least 0 and less than the number of devices.
Return an integer id associated with the given index.
Return the number of fingers active for the touch device whose id is touchid.
touchid (int) -- The touch device id.
index (int) -- The index of the finger to return information about, between 0 and the number of active fingers.
Return a dict for the finger index active on touchid. The dict contains these keys:
id the id of the finger (an integer). x the normalized x position of the finger, between 0 and 1. y the normalized y position of the finger, between 0 and 1. pressure the amount of pressure applied by the finger, between 0 and 1.
© Pygame Developers.
Licensed under the GNU LGPL License version 2.1.
https://www.pygame.org/docs/ref/touch.html