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

Add back test step for testing out argon health bar width

This commit is contained in:
Bartłomiej Dach 2023-11-15 13:33:03 +09:00
parent 159cf41f82
commit 71714f8f6e
No known key found for this signature in database

View File

@ -52,6 +52,12 @@ namespace osu.Game.Tests.Visual.Gameplay
if (healthDisplay.IsNotNull())
healthDisplay.BarHeight.Value = val;
});
AddSliderStep("Width", 0, 1f, 0.98f, val =>
{
if (healthDisplay.IsNotNull())
healthDisplay.Width = val;
});
}
[Test]