fresh Song charted

This commit is contained in:
Cameron Taylor 2020-10-04 19:31:38 -07:00
parent 9e1ccaf083
commit 851d5c241c
10 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{
"song": "Fresh",
"bpm": 120,
"sections": 8
"sections": 14
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 B

View File

@ -20,6 +20,8 @@ class Boyfriend extends Character
animation.addByPrefix('hey', 'BF HEY', 24, false);
playAnim('idle');
antialiasing = true;
addOffset('idle', -5);
addOffset("singUP", -29, 27);
addOffset("singRIGHT", -38, -7);

View File

@ -37,6 +37,7 @@ class Note extends FlxSprite
setGraphicSize(Std.int(width * 0.7));
updateHitbox();
antialiasing = true;
switch (Math.abs(noteData))
{

View File

@ -201,6 +201,7 @@ class PlayState extends FlxState
babyArrow.scrollFactor.set();
babyArrow.setGraphicSize(Std.int(babyArrow.width * 0.7));
babyArrow.updateHitbox();
babyArrow.antialiasing = true;
babyArrow.ID = i + 1;