ControllerConfig.cs 838 B

123456789101112131415161718192021222324252627282930
  1. namespace Ryujinx.Common.Configuration.Hid
  2. {
  3. public class ControllerConfig : InputConfig
  4. {
  5. /// <summary>
  6. /// Controller Left Analog Stick Deadzone
  7. /// </summary>
  8. public float DeadzoneLeft { get; set; }
  9. /// <summary>
  10. /// Controller Right Analog Stick Deadzone
  11. /// </summary>
  12. public float DeadzoneRight { get; set; }
  13. /// <summary>
  14. /// Controller Trigger Threshold
  15. /// </summary>
  16. public float TriggerThreshold { get; set; }
  17. /// <summary>
  18. /// Left JoyCon Controller Bindings
  19. /// </summary>
  20. public NpadControllerLeft LeftJoycon { get; set; }
  21. /// <summary>
  22. /// Right JoyCon Controller Bindings
  23. /// </summary>
  24. public NpadControllerRight RightJoycon { get; set; }
  25. }
  26. }