XNA and multitouch
I use XNA to develop small 2D games. The user should have the ability to interact with the game by using the mutli touch gestures in Windows 7. I want the same multi touch functionality in XNA as WPF provides. Are there any framewor开发者_开发百科ks or built-in features?
As you probably already know, the XNA touch API does not work on Windows, only on Windows Phone.
This blog post explains why and also lists some methods for getting touch input working.
Try reading this code sample about touch-based textures for WP7, it can be useful for what you want.
http://create.msdn.com/en-US/education/catalog/sample/gestures
精彩评论