balanced normal, and usin newgrounds haxelib

This commit is contained in:
Cameron Taylor
2020-11-06 01:57:00 -08:00
parent e6a219c8cc
commit 6cf7267078
50 changed files with 258 additions and 2954 deletions

View File

@ -38,8 +38,11 @@ class StoryMenuState extends MusicBeatState
override function create()
{
if (!FlxG.sound.music.playing)
FlxG.sound.playMusic('assets/music/freakyMenu' + TitleState.soundExt);
if (FlxG.sound.music != null)
{
if (!FlxG.sound.music.playing)
FlxG.sound.playMusic('assets/music/freakyMenu' + TitleState.soundExt);
}
persistentUpdate = persistentDraw = true;
@ -300,6 +303,10 @@ class StoryMenuState extends MusicBeatState
for (item in grpWeekText.members)
{
item.targetY = bullShit - curWeek;
if (item.targetY == Std.int(0))
item.alpha = 1;
else
item.alpha = 0.6;
bullShit++;
}