MotionConfigController.cs 555 B

12345678910111213141516171819202122
  1. namespace Ryujinx.Common.Configuration.Hid.Controller.Motion
  2. {
  3. public class MotionConfigController
  4. {
  5. public MotionInputBackendType MotionBackend { get; set; }
  6. /// <summary>
  7. /// Gyro Sensitivity
  8. /// </summary>
  9. public int Sensitivity { get; set; }
  10. /// <summary>
  11. /// Gyro Deadzone
  12. /// </summary>
  13. public double GyroDeadzone { get; set; }
  14. /// <summary>
  15. /// Enable Motion Controls
  16. /// </summary>
  17. public bool EnableMotion { get; set; }
  18. }
  19. }