mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-12-11 16:51:21 -05:00
alpha stuff and correct text positioning
This commit is contained in:
parent
814d72cb3f
commit
267fd0eadc
1 changed files with 39 additions and 3 deletions
|
@ -124,12 +124,15 @@ class PreferencesMenu extends Page
|
||||||
|
|
||||||
for (pref in prefs)
|
for (pref in prefs)
|
||||||
{
|
{
|
||||||
pref.x = 0;
|
|
||||||
if (pref.ID == curSelected)
|
if (pref.ID == curSelected)
|
||||||
{
|
{
|
||||||
pref.x = 30;
|
pref.onSelect(true);
|
||||||
camFollow.y = pref.y;
|
camFollow.y = pref.y;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
pref.onSelect(false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -159,6 +162,8 @@ class PreferenceItem extends FlxTypedSpriteGroup<FlxSprite>
|
||||||
public var description:String = "";
|
public var description:String = "";
|
||||||
|
|
||||||
public function handleInput(elapsed:Float):Void {}
|
public function handleInput(elapsed:Float):Void {}
|
||||||
|
|
||||||
|
public function onSelect(isSelected:Bool):Void {}
|
||||||
}
|
}
|
||||||
|
|
||||||
class NumberedPreferenceItem extends PreferenceItem
|
class NumberedPreferenceItem extends PreferenceItem
|
||||||
|
@ -239,10 +244,27 @@ class NumberedPreferenceItem extends PreferenceItem
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var isSelected:Bool = false;
|
||||||
|
|
||||||
|
public override function onSelect(isSelected:Bool):Void
|
||||||
|
{
|
||||||
|
this.isSelected = isSelected;
|
||||||
|
if (isSelected)
|
||||||
|
{
|
||||||
|
preferenceText.x = valueText.x + valueText.width + 60;
|
||||||
|
preferenceText.alpha = 1.0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
preferenceText.x = valueText.x + valueText.width + 30;
|
||||||
|
preferenceText.alpha = 0.6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function updateText():Void
|
function updateText():Void
|
||||||
{
|
{
|
||||||
valueText.text = '$currentValue';
|
valueText.text = '$currentValue';
|
||||||
preferenceText.x = valueText.x + valueText.width + 30;
|
preferenceText.x = valueText.x + valueText.width + (isSelected ? 60 : 30);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -309,4 +331,18 @@ class CheckboxPreferenceItem extends PreferenceItem
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override function onSelect(isSelected:Bool):Void
|
||||||
|
{
|
||||||
|
if (isSelected)
|
||||||
|
{
|
||||||
|
preferenceText.x = 150;
|
||||||
|
preferenceText.alpha = 1.0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
preferenceText.alpha = 0.6;
|
||||||
|
preferenceText.x = 120;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue