Skip to content

Commit

Permalink
Make minimum increment of entry speeds 0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueGlassBlock committed Jan 5, 2024
1 parent b616c7a commit 0d01d92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ protected override void InitialiseDefaults()
base.InitialiseDefaults();

SetDefault(SentakkiRulesetSettings.KiaiEffects, true);
SetDefault(SentakkiRulesetSettings.AnimationSpeed, 2.0f, 1.0f, 10.5f, 0.5f);
SetDefault(SentakkiRulesetSettings.TouchAnimationSpeed, 2.0f, 1.0f, 10.5f, 0.5f);
SetDefault(SentakkiRulesetSettings.AnimationSpeed, 2.0f, 1.0f, 10.5f, 0.25f);
SetDefault(SentakkiRulesetSettings.TouchAnimationSpeed, 2.0f, 1.0f, 10.5f, 0.25f);
SetDefault(SentakkiRulesetSettings.ShowNoteStartIndicators, false);
SetDefault(SentakkiRulesetSettings.RingColor, ColorOption.Default);
SetDefault(SentakkiRulesetSettings.RingOpacity, 1f, 0f, 1f, 0.01f);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static class SentakkiSettingsSubsectionStrings
public static LocalisableString BreakSampleVolume => new TranslatableString(getKey(@"break_sample_volume"), @"Break sample volume");

public static LocalisableString EntrySpeedTooltip(float speed, double time)
=> new TranslatableString(getKey(@"entry_speed_tooltip"), @"{0} ({1}ms)", speed > 10 ? Sonic : $"{speed:N1}", $"{time:N0}");
=> new TranslatableString(getKey(@"entry_speed_tooltip"), @"{0} ({1}ms)", speed > 10 ? Sonic : $"{speed:N2}", $"{time:N0}");

public static LocalisableString Sonic => new TranslatableString(getKey(@"sonic"), @"Sonic");

Expand Down

0 comments on commit 0d01d92

Please sign in to comment.