1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Add TODO mentioning that ArgonHealthDisplay is doing lerp wrong

This commit is contained in:
Dean Herbert 2023-10-10 15:24:03 +09:00
parent 57f588fa86
commit 6c346874d3
No known key found for this signature in database

View File

@ -149,6 +149,7 @@ namespace osu.Game.Screens.Play.HUD
double time = v.NewValue > GlowBarValue ? 500 : 250;
// TODO: this should probably use interpolation in update.
this.TransformTo(nameof(HealthBarValue), v.NewValue, time, Easing.OutQuint);
if (resetMissBarDelegate == null)
this.TransformTo(nameof(GlowBarValue), v.NewValue, time, Easing.OutQuint);