mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-12-11 16:51:21 -05:00
sounds
This commit is contained in:
parent
b75f6e5853
commit
814d72cb3f
1 changed files with 24 additions and 4 deletions
|
@ -4,13 +4,20 @@ import flixel.FlxCamera;
|
||||||
import flixel.FlxObject;
|
import flixel.FlxObject;
|
||||||
import flixel.FlxSprite;
|
import flixel.FlxSprite;
|
||||||
import flixel.math.FlxMath;
|
import flixel.math.FlxMath;
|
||||||
|
import flixel.effects.FlxFlicker;
|
||||||
import flixel.group.FlxSpriteGroup.FlxTypedSpriteGroup;
|
import flixel.group.FlxSpriteGroup.FlxTypedSpriteGroup;
|
||||||
import funkin.ui.AtlasText.AtlasFont;
|
import funkin.ui.AtlasText.AtlasFont;
|
||||||
import funkin.ui.options.OptionsState.Page;
|
import funkin.ui.options.OptionsState.Page;
|
||||||
import funkin.graphics.FunkinCamera;
|
import funkin.graphics.FunkinCamera;
|
||||||
|
import funkin.audio.FunkinSound;
|
||||||
|
|
||||||
class PreferencesMenu extends Page
|
class PreferencesMenu extends Page
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Wether you can selected a different option
|
||||||
|
*/
|
||||||
|
public static var allowScrolling:Bool = true;
|
||||||
|
|
||||||
var curSelected:Int = 0;
|
var curSelected:Int = 0;
|
||||||
var prefs:FlxTypedSpriteGroup<PreferenceItem>;
|
var prefs:FlxTypedSpriteGroup<PreferenceItem>;
|
||||||
|
|
||||||
|
@ -130,12 +137,14 @@ class PreferencesMenu extends Page
|
||||||
{
|
{
|
||||||
super.update(elapsed);
|
super.update(elapsed);
|
||||||
|
|
||||||
if (controls.UI_DOWN_P)
|
if (controls.UI_DOWN_P && allowScrolling)
|
||||||
{
|
{
|
||||||
|
FunkinSound.playOnce(Paths.sound('scrollMenu'));
|
||||||
changeSelection(1);
|
changeSelection(1);
|
||||||
}
|
}
|
||||||
else if (controls.UI_UP_P)
|
else if (controls.UI_UP_P && allowScrolling)
|
||||||
{
|
{
|
||||||
|
FunkinSound.playOnce(Paths.sound('scrollMenu'));
|
||||||
changeSelection(-1);
|
changeSelection(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -220,11 +229,13 @@ class NumberedPreferenceItem extends PreferenceItem
|
||||||
{
|
{
|
||||||
currentValue += changeRate;
|
currentValue += changeRate;
|
||||||
timeToWait = changeDelay;
|
timeToWait = changeDelay;
|
||||||
|
// FunkinSound.playOnce(Paths.sound('scrollMenu'));
|
||||||
}
|
}
|
||||||
else if (PlayerSettings.player1.controls.UI_LEFT)
|
else if (PlayerSettings.player1.controls.UI_LEFT)
|
||||||
{
|
{
|
||||||
currentValue -= changeRate;
|
currentValue -= changeRate;
|
||||||
timeToWait = changeDelay;
|
timeToWait = changeDelay;
|
||||||
|
// FunkinSound.playOnce(Paths.sound('scrollMenu'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -282,11 +293,20 @@ class CheckboxPreferenceItem extends PreferenceItem
|
||||||
this.currentValue = defaultValue;
|
this.currentValue = defaultValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var isAccepting:Bool = false;
|
||||||
|
|
||||||
public override function handleInput(elapsed:Float):Void
|
public override function handleInput(elapsed:Float):Void
|
||||||
{
|
{
|
||||||
if (PlayerSettings.player1.controls.ACCEPT)
|
if (PlayerSettings.player1.controls.ACCEPT && !isAccepting)
|
||||||
{
|
{
|
||||||
|
isAccepting = true;
|
||||||
|
PreferencesMenu.allowScrolling = false;
|
||||||
|
FunkinSound.playOnce(Paths.sound('confirmMenu'));
|
||||||
|
FlxFlicker.flicker(preferenceText, 1, 0.06, true, false, function(_) {
|
||||||
|
isAccepting = false;
|
||||||
|
PreferencesMenu.allowScrolling = true;
|
||||||
currentValue = !currentValue;
|
currentValue = !currentValue;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue