On a whim I decided to mess around with the Window Shakes axes, but I have already come to a problem. It seems like no matter what, both axes always return zero. I’ve tried just about everything I can think up from boosting the sensitivity to pulling out the “game” tab and shaking it, even building the game, but it doesn’t seem to work. Anyone else had this problem/think of something I may be doing wrong? For what’s it’s worth I’m on Windows 7.
Example: This will never log anything, no matter what.
function Update () {
if(Input.GetAxis("Window Shake X") != 0)
{
Debug.Log("Asdf");
}
}