1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:17:51 +08:00

Minor adjustments

This commit is contained in:
Dean Herbert 2024-02-07 16:43:53 +08:00
parent 8f59cb7659
commit 21e5ae5ba9
No known key found for this signature in database

View File

@ -1,13 +1,11 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable disable
using osu.Framework.Bindables;
using osu.Game.Localisation;
using osu.Game.Resources.Localisation.Web;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Localisation;
using osu.Game.Resources.Localisation.Web;
using osu.Game.Rulesets;
using osu.Game.Users;
@ -19,8 +17,8 @@ namespace osu.Game.Overlays.Rankings
public Bindable<CountryCode> Country => countryFilter.Current;
private OverlayRulesetSelector rulesetSelector;
private CountryFilter countryFilter;
private OverlayRulesetSelector rulesetSelector = null!;
private CountryFilter countryFilter = null!;
protected override OverlayTitle CreateTitle() => new RankingsTitle();
@ -46,8 +44,23 @@ namespace osu.Game.Overlays.Rankings
Current.BindValueChanged(scope =>
{
rulesetSelector.FadeTo(scope.NewValue <= RankingsScope.Country ? 1 : 0, 200, Easing.OutQuint);
});
rulesetSelector.FadeTo(showRulesetSelector(scope.NewValue) ? 1 : 0, 200, Easing.OutQuint);
}, true);
bool showRulesetSelector(RankingsScope scope)
{
switch (scope)
{
case RankingsScope.Performance:
case RankingsScope.Spotlights:
case RankingsScope.Score:
case RankingsScope.Country:
return true;
default:
return false;
}
}
}
}
}