Fix build error

This commit is contained in:
Salman Ahmed
2019-07-06 18:44:55 +03:00
committed by GitHub
parent a42c79895d
commit 1f13b94c72

View File

@ -24,7 +24,7 @@ namespace osu.Game.Rulesets.Mods
public void ApplyToHUD(HUDOverlay overlay) public void ApplyToHUD(HUDOverlay overlay)
{ {
hideHealthBar.BindValueChanged(v => healthDisplay.FadeTo(v.NewValue ? 0 : 1, 250, Easing.OutQuint), true); hideHealthBar.BindValueChanged(v => overlay.HealthDisplay.FadeTo(v.NewValue ? 0 : 1, 250, Easing.OutQuint), true);
} }
} }
} }