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

@ -13,7 +13,10 @@ class BackgroundDancer extends FlxSprite
animation.addByIndices('danceLeft', 'bg dancer sketch PINK', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "", 24, false);
animation.addByIndices('danceRight', 'bg dancer sketch PINK', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false);
animation.play('danceLeft');
antialiasing = true;
if(FlxG.save.data.antialiasing)
{
antialiasing = true;
}
}
var danceDir:Bool = false;