mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 10:16:40 +00:00
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
|
using Ryujinx.Common.Configuration.Hid.Controller.Motion;
|
|||
|
|
|||
|
namespace Ryujinx.Common.Configuration.Hid.Controller
|
|||
|
{
|
|||
|
public class GenericControllerInputConfig<Button, Stick> : GenericInputConfigurationCommon<Button> where Button : unmanaged where Stick : unmanaged
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Left JoyCon Controller Stick Bindings
|
|||
|
/// </summary>
|
|||
|
public JoyconConfigControllerStick<Button, Stick> LeftJoyconStick { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Right JoyCon Controller Stick Bindings
|
|||
|
/// </summary>
|
|||
|
public JoyconConfigControllerStick<Button, Stick> RightJoyconStick { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Controller Left Analog Stick Deadzone
|
|||
|
/// </summary>
|
|||
|
public float DeadzoneLeft { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Controller Right Analog Stick Deadzone
|
|||
|
/// </summary>
|
|||
|
public float DeadzoneRight { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Controller Trigger Threshold
|
|||
|
/// </summary>
|
|||
|
public float TriggerThreshold { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Controller Motion Settings
|
|||
|
/// </summary>
|
|||
|
public MotionConfigController Motion { get; set; }
|
|||
|
}
|
|||
|
}
|