mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-23 15:26:06 +00:00
Merge pull request #19 from lotusotho/menubuttonspam-fix
fixed spamming issue with the buttons on the story menu
This commit is contained in:
commit
675b86210a
|
@ -230,15 +230,19 @@ class StoryMenuState extends MusicBeatState
|
||||||
|
|
||||||
var movedBack:Bool = false;
|
var movedBack:Bool = false;
|
||||||
var selectedWeek:Bool = false;
|
var selectedWeek:Bool = false;
|
||||||
|
var stopspamming:Bool = false;
|
||||||
function selectWeek()
|
function selectWeek()
|
||||||
{
|
{
|
||||||
if (weekUnlocked[curWeek])
|
if (weekUnlocked[curWeek])
|
||||||
{
|
{
|
||||||
FlxG.sound.play('assets/sounds/confirmMenu' + TitleState.soundExt);
|
if (stopspamming == false)
|
||||||
|
{
|
||||||
|
FlxG.sound.play('assets/sounds/confirmMenu' + TitleState.soundExt);
|
||||||
|
|
||||||
grpWeekText.members[curWeek].week.animation.resume();
|
grpWeekText.members[curWeek].week.animation.resume();
|
||||||
grpWeekCharacters.members[1].animation.play('bfConfirm');
|
grpWeekCharacters.members[1].animation.play('bfConfirm');
|
||||||
|
stopspamming = true;
|
||||||
|
}
|
||||||
|
|
||||||
PlayState.storyPlaylist = weekData[curWeek];
|
PlayState.storyPlaylist = weekData[curWeek];
|
||||||
PlayState.isStoryMode = true;
|
PlayState.isStoryMode = true;
|
||||||
|
|
Loading…
Reference in a new issue