ANTIALIASING OPTION + GRAMMAR AND PHRASING FIXES

This commit is contained in:
CyndaquilDAC
2021-07-19 22:55:58 -05:00
parent eaaa585393
commit 7b6e538676
21 changed files with 249 additions and 92 deletions

View File

@@ -38,7 +38,10 @@ class LoadingState extends MusicBeatState
{
logo = new FlxSprite(-150, -100);
logo.frames = Paths.getSparrowAtlas('logoBumpin');
logo.antialiasing = true;
if(FlxG.save.data.antialiasing)
{
logo.antialiasing = true;
}
logo.animation.addByPrefix('bump', 'logo bumpin', 24);
logo.animation.play('bump');
logo.updateHitbox();
@@ -49,7 +52,10 @@ class LoadingState extends MusicBeatState
gfDance.frames = Paths.getSparrowAtlas('gfDanceTitle');
gfDance.animation.addByIndices('danceLeft', 'gfDance', [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "", 24, false);
gfDance.animation.addByIndices('danceRight', 'gfDance', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false);
gfDance.antialiasing = true;
if(FlxG.save.data.antialiasing)
{
gfDance.antialiasing = true;
}
add(gfDance);
add(logo);