Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Assets/AudioKata/Scripts/Settings/UserPreferences.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
);
Expand All @@ -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
}
);
Expand Down