From 071518732e1dd684bf0e2f99c8ccdcaec59cb23a Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Wed, 28 Jun 2023 17:17:57 -0700 Subject: [PATCH] set axis button threshold default to 0.5 --- src/Input/VirtualButtons/AxisButton.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Input/VirtualButtons/AxisButton.cs b/src/Input/VirtualButtons/AxisButton.cs index 92e244a..62ae02b 100644 --- a/src/Input/VirtualButtons/AxisButton.cs +++ b/src/Input/VirtualButtons/AxisButton.cs @@ -5,7 +5,7 @@ namespace MoonWorks.Input public Axis Parent { get; } public AxisButtonCode Code { get; } - private float threshold = 0.9f; + private float threshold = 0.5f; public float Threshold { get => threshold;