mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-02-07 03:57:19 +00:00
Mid-song cutscenes should just do nothing after they are finished,
This commit is contained in:
parent
b06a35ea2f
commit
cf01157b39
|
@ -339,7 +339,8 @@ class VideoCutscene
|
|||
case CutsceneType.ENDING:
|
||||
PlayState.instance.endSong(true); // true = right goddamn now
|
||||
case CutsceneType.MIDSONG:
|
||||
throw "Not implemented!";
|
||||
// Do nothing.
|
||||
// throw "Not implemented!";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -347,6 +348,6 @@ class VideoCutscene
|
|||
enum CutsceneType
|
||||
{
|
||||
STARTING; // The default cutscene type. Starts the countdown after the video is done.
|
||||
MIDSONG; // TODO: Implement this!
|
||||
MIDSONG; // Does nothing.
|
||||
ENDING; // Ends the song after the video is done.
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue