Gamepad Deadzone

Started by
1 comment, last by Grain 10 years, 8 months ago

Is there no way to change the size of the dead zone you get from the control sticks. I know that if you pass the enum GamePadDeadZone into GetState() you can change the shape of it between either circular and square or turn it off all together. Is the only option here to pass GamePadDeadZone.None and write my own dead zone code? Seems like some pretty basic functionality for XNA to be missing.

Advertisement
You could always implement this manually and even make it configurable (user options). Get your direction vector (GamePadState.ThumbSticks.Left/Right) and only react if the length is greater than some threshold.


if(someGamePadState.ThumbSticks.Left.Length() > 0.2f)
{
    //move ship 
}

Yeah, I'm sure It won't be difficult to code up, I'd just prefer not to reinvent the wheel if XNA already had this function. Which is all I'm asking.

This topic is closed to new replies.

Advertisement