|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GamePadDeadZone>
Microsoft.Xna.Framework.Input.GamePadDeadZone
public enum GamePadDeadZone
Specifies a type of dead zone processing to apply to Xbox 360 controller analog sticks when calling GamePad.GetState.
Enum Constant Summary | |
---|---|
Circular
The combined X and Y position of each stick is compared against the dead zone. |
|
IndependantAxes
The X and Y positions of each stick are compared against the dead zone independently. |
|
None
The values of each stick are not processed and are returned by GamePad.GetState as "raw" values. |
Method Summary | |
---|---|
static GamePadDeadZone |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GamePadDeadZone[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GamePadDeadZone None
public static final GamePadDeadZone IndependantAxes
public static final GamePadDeadZone Circular
Method Detail |
---|
public static GamePadDeadZone[] values()
for (GamePadDeadZone c : GamePadDeadZone.values()) System.out.println(c);
public static GamePadDeadZone valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |