1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00

Change skinnable health test scene to drain

This commit is contained in:
Dean Herbert 2024-01-09 17:09:19 +09:00
parent d83b8dbdaf
commit f1b4c305b0
No known key found for this signature in database

View File

@ -35,6 +35,13 @@ namespace osu.Game.Tests.Visual.Gameplay
});
}
protected override void Update()
{
base.Update();
healthProcessor.Health.Value -= 0.0001f * Time.Elapsed;
}
[Test]
public void TestHealthDisplayIncrementing()
{