1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 03:03:21 +08:00

Change text to stream instead of fruits as that is the term by catch mappers

This commit is contained in:
Darius Wattimena 2024-11-18 22:30:15 +01:00
parent 5ac3bb73ee
commit 00e3b20ff0

View File

@ -134,7 +134,7 @@ namespace osu.Game.Rulesets.Catch.Edit.Blueprints
if (e.Key == Key.F && e.ControlPressed && e.ShiftPressed) if (e.Key == Key.F && e.ControlPressed && e.ShiftPressed)
{ {
convertToFruits(); convertToStream();
return true; return true;
} }
@ -190,7 +190,7 @@ namespace osu.Game.Rulesets.Catch.Edit.Blueprints
lastSliderPathVersion = HitObject.Path.Version.Value; lastSliderPathVersion = HitObject.Path.Version.Value;
} }
private void convertToFruits() private void convertToStream()
{ {
if (editorBeatmap == null || beatDivisor == null) if (editorBeatmap == null || beatDivisor == null)
return; return;
@ -242,7 +242,7 @@ namespace osu.Game.Rulesets.Catch.Edit.Blueprints
Hotkey = new Hotkey(new KeyCombination(InputKey.Control, InputKey.MouseLeft)) Hotkey = new Hotkey(new KeyCombination(InputKey.Control, InputKey.MouseLeft))
}; };
yield return new OsuMenuItem("Convert to fruits", MenuItemType.Destructive, convertToFruits) yield return new OsuMenuItem("Convert to stream", MenuItemType.Destructive, convertToStream)
{ {
Hotkey = new Hotkey(new KeyCombination(InputKey.Control, InputKey.Shift, InputKey.F)) Hotkey = new Hotkey(new KeyCombination(InputKey.Control, InputKey.Shift, InputKey.F))
}; };