Funkin/source/MenuItem.hx

39 lines
990 B
Haxe
Raw Normal View History

2020-10-30 21:18:26 +00:00
package;
import flixel.FlxSprite;
import flixel.graphics.frames.FlxAtlasFrames;
import flixel.group.FlxSpriteGroup;
2020-10-30 21:55:20 +00:00
import flixel.math.FlxMath;
2020-10-30 21:18:26 +00:00
class MenuItem extends FlxSpriteGroup
{
2020-10-30 21:55:20 +00:00
public var targetY:Float = 0;
2020-10-31 01:55:09 +00:00
public var week:FlxSprite;
2020-10-30 21:55:20 +00:00
2020-11-06 10:21:29 +00:00
public function new(x:Float, y:Float, weekNum:Int = 0)
2020-10-30 21:18:26 +00:00
{
super(x, y);
var tex = FlxAtlasFrames.fromSparrow(AssetPaths.campaign_menu_UI_assets__png, AssetPaths.campaign_menu_UI_assets__xml);
2020-10-31 01:55:09 +00:00
week = new FlxSprite();
2020-10-30 21:18:26 +00:00
week.frames = tex;
2020-11-06 10:21:29 +00:00
// TUTORIAL IS WEEK 0
week.animation.addByPrefix('week0', 'tutorial selected', 24);
week.animation.addByPrefix('week1', "WEEK1 select", 24);
week.animation.addByPrefix('week2', "week2 select", 24);
2020-12-11 09:15:24 +00:00
week.animation.addByPrefix('week3', "Week 3 press", 24);
2020-10-30 21:18:26 +00:00
add(week);
2020-10-30 21:55:20 +00:00
week.animation.play('week' + weekNum);
2020-10-31 01:55:09 +00:00
week.animation.pause();
2020-10-30 21:18:26 +00:00
week.updateHitbox();
}
2020-10-30 21:55:20 +00:00
override function update(elapsed:Float)
{
super.update(elapsed);
y = FlxMath.lerp(y, (targetY * 120) + 480, 0.17);
}
2020-10-30 21:18:26 +00:00
}