diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 122af1e..61b3105 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -124,7 +124,12 @@ class ChartingState extends MusicBeatState gridBG = FlxGridOverlay.create(GRID_SIZE, GRID_SIZE, GRID_SIZE * 8, GRID_SIZE * 16); add(gridBG); - snapText = new FlxText(-100,10,0,"Snap: 1/" + snap + " (Control + Left or Right to change.)\nAdd Notes: 1-8 (or click)\n", 24); + var blackBorder:FlxSprite = new FlxSprite(60,10).makeGraphic(120,100,FlxColor.BLACK); + blackBorder.scrollFactor.set(); + + blackBorder.alpha = 0.3; + + snapText = new FlxText(60,10,0,"Snap: 1/" + snap + " (Control + Left or Right to change.)\nAdd Notes: 1-8 (or click)\n", 14); snapText.scrollFactor.set(); gridBlackLine = new FlxSprite(gridBG.x + gridBG.width / 2).makeGraphic(2, Std.int(gridBG.height), FlxColor.BLACK); @@ -193,6 +198,7 @@ class ChartingState extends MusicBeatState add(curRenderedNotes); add(curRenderedSustains); + add(blackBorder); add(snapText); @@ -630,7 +636,7 @@ class ChartingState extends MusicBeatState { updateHeads(); - snapText.text = "Snap: " + snap; + snapText.text = "Snap: 1/" + snap + " (Control + Left or Right to change.)\nAdd Notes: 1-8 (or click)\n"; curStep = recalculateSteps(); diff --git a/source/MainMenuState.hx b/source/MainMenuState.hx index ef71372..93c0881 100644 --- a/source/MainMenuState.hx +++ b/source/MainMenuState.hx @@ -102,7 +102,7 @@ class MainMenuState extends MusicBeatState menuItem.scrollFactor.set(); menuItem.antialiasing = true; if (firstStart) - FlxTween.tween(menuItem,{y: 60 + (i * 160)},1 + (i * 0.25) ,{ease: FlxEase.bounceInOut, onComplete: function(flxTween:FlxTween) + FlxTween.tween(menuItem,{y: 60 + (i * 160)},1 + (i * 0.25) ,{ease: FlxEase.expoInOut, onComplete: function(flxTween:FlxTween) { finishedFunnyMove = true; }});