コード例 #1
0
 internal static bool StartCountdown(InputFrame i)
 {
     return(i.IsJustPressed(Buttons.RightStick));
 }
コード例 #2
0
 internal static bool MenuRight(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.LeftThumbstickRight) || arg.IsJustPressed(Buttons.DPadRight));
 }
コード例 #3
0
 internal static bool Dash(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.RightShoulder));
 }
コード例 #4
0
 internal static bool Pause(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.Start));
 }
コード例 #5
0
 internal static bool StartShout(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.B));
 }
コード例 #6
0
 internal static bool StartLure(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.A));
 }
コード例 #7
0
 internal static bool MenuRandom(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.X));
 }
コード例 #8
0
 internal static bool MenuBack(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.B));
 }
コード例 #9
0
 internal static bool MenuSelect(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.A));
 }
コード例 #10
0
 internal static bool MenuDown(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.LeftThumbstickDown) || arg.IsJustPressed(Buttons.DPadDown));
 }
コード例 #11
0
 internal static bool MenuUp(InputFrame arg)
 {
     return(arg.IsJustPressed(Buttons.LeftThumbstickUp) || arg.IsJustPressed(Buttons.DPadUp));
 }