mirror of
https://github.com/osukey/osukey.git
synced 2025-06-03 11:57:36 +09:00
Add Stop + RemoveAdjustment functions
This commit is contained in:
parent
cb8fe89b8b
commit
2f3fb8cf88
@ -49,8 +49,10 @@ namespace osu.Game.Skinning
|
||||
}
|
||||
|
||||
public void Play() => channels?.ForEach(c => c.Play());
|
||||
public void Stop() => channels?.ForEach(c => c.Stop());
|
||||
|
||||
public void AddAdjustment(AdjustableProperty type, BindableDouble adjustBindable) => channels?.ForEach(c => c.AddAdjustment(type, adjustBindable));
|
||||
public void RemoveAdjustment(AdjustableProperty type, BindableDouble adjustBindable) => channels?.ForEach(c => c.RemoveAdjustment(type, adjustBindable));
|
||||
|
||||
public override bool IsPresent => Scheduler.HasPendingTasks;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user