Detecting size of touch... easy?

Is there an easy way to detect the size of a screen touch? I want to distinguish between a single finger touch and a two finger touch. I would think this would be a common need… but maybe not… thought I would ask before I reinvent the wheel.

Thanks! [import]uid: 16901 topic_id: 9816 reply_id: 309816[/import]

A touch registers as just a single point on the screen.

With multi-touch enabled, you can register multiple individual touches at the same time. Then just add some code to check if there is more than one touch active. [import]uid: 14598 topic_id: 9816 reply_id: 35834[/import]