mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05:00
Merge branch 'develop' into fps-setting
This commit is contained in:
commit
6efdbde8da
3 changed files with 10 additions and 1 deletions
|
@ -3046,6 +3046,7 @@ class PlayState extends MusicBeatSubState
|
|||
GameOverSubState.reset();
|
||||
PauseSubState.reset();
|
||||
Countdown.reset();
|
||||
PopUpStuff.reset();
|
||||
|
||||
// Clear the static reference to this state.
|
||||
instance = null;
|
||||
|
|
|
@ -125,4 +125,13 @@ class PopUpStuff extends FlxTypedGroup<FunkinSprite>
|
|||
daLoop++;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset the popup configuration to the default.
|
||||
*/
|
||||
public static function reset()
|
||||
{
|
||||
noteStyle = NoteStyleRegistry.instance.fetchDefault();
|
||||
isPixel = false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -314,7 +314,6 @@ class LoadingState extends MusicBeatSubState
|
|||
FunkinSprite.cacheTexture(Paths.image('ui/popup/pixel/num7'));
|
||||
FunkinSprite.cacheTexture(Paths.image('ui/popup/pixel/num8'));
|
||||
FunkinSprite.cacheTexture(Paths.image('ui/popup/pixel/num9'));
|
||||
|
||||
FunkinSprite.cacheTexture(Paths.image('notes', 'shared'));
|
||||
FunkinSprite.cacheTexture(Paths.image('noteSplashes', 'shared'));
|
||||
FunkinSprite.cacheTexture(Paths.image('noteStrumline', 'shared'));
|
||||
|
|
Loading…
Reference in a new issue