mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-03-22 09:59:25 +00:00
Fix reloading song events
This commit is contained in:
parent
1191fff913
commit
5729eb0413
|
@ -8,6 +8,7 @@ import funkin.play.stage.StageData;
|
||||||
import polymod.Polymod;
|
import polymod.Polymod;
|
||||||
import polymod.backends.PolymodAssets.PolymodAssetType;
|
import polymod.backends.PolymodAssets.PolymodAssetType;
|
||||||
import polymod.format.ParseRules.TextFileFormat;
|
import polymod.format.ParseRules.TextFileFormat;
|
||||||
|
import funkin.play.event.SongEventData.SongEventParser;
|
||||||
import funkin.util.FileUtil;
|
import funkin.util.FileUtil;
|
||||||
|
|
||||||
class PolymodHandler
|
class PolymodHandler
|
||||||
|
@ -279,6 +280,11 @@ class PolymodHandler
|
||||||
// TODO: Reload event callbacks
|
// TODO: Reload event callbacks
|
||||||
|
|
||||||
funkin.data.level.LevelRegistry.instance.loadEntries();
|
funkin.data.level.LevelRegistry.instance.loadEntries();
|
||||||
|
SongEventParser.loadEventCache();
|
||||||
|
// TODO: Uncomment this once conversation data is implemented.
|
||||||
|
// ConversationDataParser.loadConversationCache();
|
||||||
|
// DialogueBoxDataParser.loadDialogueBoxCache();
|
||||||
|
// SpeakerDataParser.loadSpeakerCache();
|
||||||
SongDataParser.loadSongCache();
|
SongDataParser.loadSongCache();
|
||||||
StageDataParser.loadStageCache();
|
StageDataParser.loadStageCache();
|
||||||
CharacterDataParser.loadCharacterCache();
|
CharacterDataParser.loadCharacterCache();
|
||||||
|
|
Loading…
Reference in a new issue