mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
return on storyboard side
This commit is contained in:
@ -83,8 +83,12 @@ namespace osu.Game.Beatmaps.Formats
|
|||||||
storyboardSprite = null;
|
storyboardSprite = null;
|
||||||
|
|
||||||
EventType type;
|
EventType type;
|
||||||
|
|
||||||
if (!Enum.TryParse(split[0], out type))
|
if (!Enum.TryParse(split[0], out type))
|
||||||
|
{
|
||||||
Logger.Log($"Unknown storyboard event of type {split[0]} could not be parsed and will be ignored.", LoggingTarget.Runtime, LogLevel.Important);
|
Logger.Log($"Unknown storyboard event of type {split[0]} could not be parsed and will be ignored.", LoggingTarget.Runtime, LogLevel.Important);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user