diff --git a/Assets/AudioKata/Scripts/Settings/UserPreferences.cs b/Assets/AudioKata/Scripts/Settings/UserPreferences.cs index 4cf28419..143f599b 100644 --- a/Assets/AudioKata/Scripts/Settings/UserPreferences.cs +++ b/Assets/AudioKata/Scripts/Settings/UserPreferences.cs @@ -192,7 +192,7 @@ private static (bool, string) ValidateSoundPackName(string soundPackName) { DisplayName = "Visual Offset (ms)", Description = "Offset (in ms) to be applied to visual targets. Positive makes targets appear later, negative makes targets appear earlier.", - NumericRange = new KataNumericRange(-50f, 50, true), + NumericRange = new KataNumericRange(-200f, 200f, true), SettingsDisplayType = SettingsDisplay.ReadOnly } ); @@ -211,7 +211,7 @@ private static (bool, string) ValidateSoundPackName(string soundPackName) { DisplayName = "Input Offset (ms)", Description = "Offset controlling when inputs from controllers etc. are judged for scoring, relative to the time the visuals line up.\nIf you have controller delay (or poor reaction time), make this negative", - NumericRange = new KataNumericRange(-25, 25, true), + NumericRange = new KataNumericRange(-200f, 200f, true), SettingsDisplayType = SettingsDisplay.ReadOnly } );