1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 23:27:15 +08:00

Weld -> BindWith.

This commit is contained in:
Dean Herbert
2017-02-27 12:24:50 +09:00
Unverified
parent bc231c6bd4
commit 47997c20ad
31 changed files with 94 additions and 93 deletions
@@ -82,9 +82,9 @@ namespace osu.Game.Graphics.UserInterface.Volume
[BackgroundDependencyLoader]
private void load(AudioManager audio)
{
volumeMeterMaster.Bindable.Weld(audio.Volume);
volumeMeterEffect.Bindable.Weld(audio.VolumeSample);
volumeMeterMusic.Bindable.Weld(audio.VolumeTrack);
volumeMeterMaster.Bindable.BindTo(audio.Volume);
volumeMeterEffect.Bindable.BindTo(audio.VolumeSample);
volumeMeterMusic.Bindable.BindTo(audio.VolumeTrack);
}
ScheduledDelegate popOutDelegate;