Shake Gesture Library for XNA?
I am trying to use the Shake Gesture Library on a XNA p开发者_高级运维roject: Shake Gesture Library, even though it's a four-step process, but I can't get it to work. I tried this on both HD7 and Omnia7.
However, when I run the sample it works perfectly. Can anyone tell me what I am doing wrong?
You're probably missing a capability in your WMAppManifestFile
. You can find this file in the Properties
folder, from within the Solution Explorer
. Add:
<Capability Name="ID_CAP_SENSORS"/>
in the Capabilities
section.
精彩评论