mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Show slider velocity in hit object inspector
This commit is contained in:
@ -98,6 +98,12 @@ namespace osu.Game.Rulesets.Edit
|
|||||||
addValue($"{distance.Distance:#,0.##}px");
|
addValue($"{distance.Distance:#,0.##}px");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (selected is IHasSliderVelocity sliderVelocity)
|
||||||
|
{
|
||||||
|
addHeader("Slider Velocity");
|
||||||
|
addValue($"{sliderVelocity.SliderVelocity:#,0.00}x");
|
||||||
|
}
|
||||||
|
|
||||||
if (selected is IHasRepeats repeats)
|
if (selected is IHasRepeats repeats)
|
||||||
{
|
{
|
||||||
addHeader("Repeats");
|
addHeader("Repeats");
|
||||||
|
Reference in New Issue
Block a user