Commit 792643fb by Tim Reiter

fixed dash shoulder trigger bug (only LB and RB are accepted now)

parent 94d91b15
...@@ -125,8 +125,7 @@ public class PlayerInputMapping : MonoBehaviour ...@@ -125,8 +125,7 @@ public class PlayerInputMapping : MonoBehaviour
{ {
if (usesGamepad) if (usesGamepad)
{ {
return (GamePad.GetTrigger(GamePad.Trigger.LeftTrigger, gamepadIndex) > 0.01f) || (GamePad.GetTrigger(GamePad.Trigger.RightTrigger, gamepadIndex) > 0.01f) return GamePad.GetButton(GamePad.Button.LeftShoulder, gamepadIndex) || GamePad.GetButton(GamePad.Button.RightShoulder, gamepadIndex);
|| GamePad.GetButton(GamePad.Button.LeftShoulder, gamepadIndex) || GamePad.GetButton(GamePad.Button.RightShoulder, gamepadIndex);
} }
else return Input.GetKey(keyCodes[(int)Keys.Dash]); else return Input.GetKey(keyCodes[(int)Keys.Dash]);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment