예제 #1
0
파일: GamePad.cs 프로젝트: syun002/FNA
 public static GamePadState GetState(PlayerIndex playerIndex, GamePadDeadZone deadZoneMode)
 {
     return(FNAPlatform.GetGamePadState(
                (int)playerIndex,
                deadZoneMode
                ));
 }
예제 #2
0
파일: GamePad.cs 프로젝트: syun002/FNA
 public static GamePadState GetState(PlayerIndex playerIndex)
 {
     return(FNAPlatform.GetGamePadState(
                (int)playerIndex,
                GamePadDeadZone.IndependentAxes
                ));
 }