1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-25 18:57:18 +08:00

Implement some new methods

This commit is contained in:
smoogipoo 2021-02-22 18:31:33 +09:00
parent ee6a94273d
commit 0bda9e4b79

View File

@ -529,6 +529,14 @@ namespace osu.Game.Skinning
{
sample.RemoveAllAdjustments(type);
}
public IBindable<double> AggregateVolume => sample.AggregateVolume;
public IBindable<double> AggregateBalance => sample.AggregateBalance;
public IBindable<double> AggregateFrequency => sample.AggregateFrequency;
public IBindable<double> AggregateTempo => sample.AggregateTempo;
}
private IEnumerable<string> getLegacyLookupNames(HitSampleInfo hitSample)