mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:07:52 +08:00
Merge pull request #23404 from peppy/show-sv-in-inspector
Show slider velocity in hit object inspector
This commit is contained in:
commit
4ca80cf6be
@ -98,6 +98,12 @@ namespace osu.Game.Rulesets.Edit
|
||||
addValue($"{distance.Distance:#,0.##}px");
|
||||
}
|
||||
|
||||
if (selected is IHasSliderVelocity sliderVelocity)
|
||||
{
|
||||
addHeader("Slider Velocity");
|
||||
addValue($"{sliderVelocity.SliderVelocity:#,0.00}x");
|
||||
}
|
||||
|
||||
if (selected is IHasRepeats repeats)
|
||||
{
|
||||
addHeader("Repeats");
|
||||
|
Loading…
Reference in New Issue
Block a user