public void CreateActionMap()
 {
     MoveAction = new InputAction("move", expectedControlLayout: "Stick");
     MoveAction.AppendCompositeBinding("Dpad")
     .With("Left", "<Keyboard>/a")
     .With("Right", "<Keyboard>/d")
     .With("Up", "<Keyboard>/w")
     .With("Down", "<Keyboard>/s");
 }