almost releaaaase

This commit is contained in:
Cameron Taylor
2020-10-31 21:55:00 -07:00
parent ff354d2b69
commit 98a5401f4b
6 changed files with 14 additions and 8 deletions

View File

@ -275,9 +275,11 @@ class StoryMenuState extends MusicBeatState
}
sprDifficulty.alpha = 0;
sprDifficulty.y -= 15;
FlxTween.tween(sprDifficulty, {y: sprDifficulty.y + 15, alpha: 1}, 0.07);
// USING THESE WEIRD VALUES SO THAT IT DOESNT FLOAT UP
sprDifficulty.y = leftArrow.y - 15;
FlxTween.tween(sprDifficulty, {y: leftArrow.y + 15, alpha: 1}, 0.07);
}
function changeWeek(change:Int = 0):Void