mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-01 04:14:47 +00:00
74 lines
1.6 KiB
Haxe
74 lines
1.6 KiB
Haxe
|
package ui;
|
||
|
|
||
|
import flixel.FlxG;
|
||
|
import flixel.addons.effects.chainable.FlxEffectSprite;
|
||
|
import flixel.addons.effects.chainable.FlxOutlineEffect;
|
||
|
import flixel.group.FlxGroup.FlxTypedGroup;
|
||
|
import flixel.util.FlxColor;
|
||
|
|
||
|
class ColorsMenu extends ui.OptionsState.Page
|
||
|
{
|
||
|
var curSelected:Int = 0;
|
||
|
|
||
|
var grpNotes:FlxTypedGroup<Note>;
|
||
|
|
||
|
public function new()
|
||
|
{
|
||
|
super();
|
||
|
|
||
|
grpNotes = new FlxTypedGroup<Note>();
|
||
|
add(grpNotes);
|
||
|
|
||
|
for (i in 0...4)
|
||
|
{
|
||
|
var note:Note = new Note(0, i);
|
||
|
|
||
|
note.x = (100 * i) + i;
|
||
|
note.screenCenter(Y);
|
||
|
|
||
|
var _effectSpr:FlxEffectSprite = new FlxEffectSprite(note, [new FlxOutlineEffect(FlxOutlineMode.FAST, FlxColor.WHITE, 4, 1)]);
|
||
|
add(_effectSpr);
|
||
|
_effectSpr.y = 0;
|
||
|
_effectSpr.x = i * 80;
|
||
|
_effectSpr.antialiasing = true;
|
||
|
_effectSpr.setGraphicSize(Std.int(_effectSpr.width * 0.7));
|
||
|
_effectSpr.updateHitbox();
|
||
|
|
||
|
grpNotes.add(note);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
override function update(elapsed:Float)
|
||
|
{
|
||
|
if (controls.BACK)
|
||
|
{
|
||
|
FlxG.state.closeSubState();
|
||
|
FlxG.state.openSubState(new OptionsSubState());
|
||
|
}
|
||
|
|
||
|
if (controls.UI_RIGHT_P)
|
||
|
curSelected += 1;
|
||
|
if (controls.UI_LEFT_P)
|
||
|
curSelected -= 1;
|
||
|
|
||
|
if (curSelected < 0)
|
||
|
curSelected = grpNotes.members.length - 1;
|
||
|
if (curSelected >= grpNotes.members.length)
|
||
|
curSelected = 0;
|
||
|
|
||
|
if (controls.UI_UP)
|
||
|
{
|
||
|
grpNotes.members[curSelected].colorSwap.update(elapsed * 0.3);
|
||
|
Note.arrowColors[curSelected] += elapsed * 0.3;
|
||
|
}
|
||
|
|
||
|
if (controls.UI_DOWN)
|
||
|
{
|
||
|
grpNotes.members[curSelected].colorSwap.update(-elapsed * 0.3);
|
||
|
Note.arrowColors[curSelected] += -elapsed * 0.3;
|
||
|
}
|
||
|
|
||
|
super.update(elapsed);
|
||
|
}
|
||
|
}
|