We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e69e42e commit 31ca086Copy full SHA for 31ca086
engine/Orbit.Input/Platforms/Windows/GameController.cs
@@ -9,6 +9,13 @@ public partial class GameController
9
public GameController(Gamepad gamepad)
10
{
11
this.gamepad = gamepad;
12
+
13
+ Dpad = new Stick(this, nameof(Dpad));
14
+ LeftStick = new Stick(this, nameof(LeftStick));
15
+ RightStick = new Stick(this, nameof(RightStick));
16
17
+ LeftShoulder = new Shoulder(this, nameof(LeftShoulder));
18
+ RightShoulder = new Shoulder(this, nameof(RightShoulder));
19
}
20
21
private void Update()
0 commit comments