mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:43:05 +08:00
Use existing reflection methods to avoid manual binding of ExtendedLimits
This commit is contained in:
parent
bd7c334588
commit
88b00123f6
@ -35,12 +35,6 @@ namespace osu.Game.Rulesets.Catch.Mods
|
||||
[SettingSource("Spicy Patterns", "Adjust the patterns as if Hard Rock is enabled.")]
|
||||
public BindableBool HardRockOffsets { get; } = new BindableBool();
|
||||
|
||||
public CatchModDifficultyAdjust()
|
||||
{
|
||||
CircleSize.ExtendedLimits.BindTo(ExtendedLimits);
|
||||
ApproachRate.ExtendedLimits.BindTo(ExtendedLimits);
|
||||
}
|
||||
|
||||
public override string SettingDescription
|
||||
{
|
||||
get
|
||||
|
@ -30,12 +30,6 @@ namespace osu.Game.Rulesets.Osu.Mods
|
||||
ReadFromDifficulty = diff => diff.ApproachRate,
|
||||
};
|
||||
|
||||
public OsuModDifficultyAdjust()
|
||||
{
|
||||
CircleSize.ExtendedLimits.BindTo(ExtendedLimits);
|
||||
ApproachRate.ExtendedLimits.BindTo(ExtendedLimits);
|
||||
}
|
||||
|
||||
public override string SettingDescription
|
||||
{
|
||||
get
|
||||
|
@ -57,8 +57,11 @@ namespace osu.Game.Rulesets.Mods
|
||||
|
||||
protected ModDifficultyAdjust()
|
||||
{
|
||||
OverallDifficulty.ExtendedLimits.BindTo(ExtendedLimits);
|
||||
DrainRate.ExtendedLimits.BindTo(ExtendedLimits);
|
||||
foreach (var (_, property) in this.GetOrderedSettingsSourceProperties())
|
||||
{
|
||||
if (property.GetValue(this) is DifficultyBindable diffAdjustBindable)
|
||||
diffAdjustBindable.ExtendedLimits.BindTo(ExtendedLimits);
|
||||
}
|
||||
}
|
||||
|
||||
public override string SettingDescription
|
||||
|
Loading…
Reference in New Issue
Block a user