diff --git a/assets/data/fresh/fresh.json b/assets/data/fresh/fresh.json index a8ef07d..166b94d 100644 --- a/assets/data/fresh/fresh.json +++ b/assets/data/fresh/fresh.json @@ -1,5 +1,5 @@ { "song": "Fresh", "bpm": 120, - "sections": 8 + "sections": 14 } \ No newline at end of file diff --git a/assets/data/fresh/fresh_section10.png b/assets/data/fresh/fresh_section10.png new file mode 100644 index 0000000..68c928f Binary files /dev/null and b/assets/data/fresh/fresh_section10.png differ diff --git a/assets/data/fresh/fresh_section11.png b/assets/data/fresh/fresh_section11.png new file mode 100644 index 0000000..ae0b467 Binary files /dev/null and b/assets/data/fresh/fresh_section11.png differ diff --git a/assets/data/fresh/fresh_section12.png b/assets/data/fresh/fresh_section12.png new file mode 100644 index 0000000..c08230e Binary files /dev/null and b/assets/data/fresh/fresh_section12.png differ diff --git a/assets/data/fresh/fresh_section13.png b/assets/data/fresh/fresh_section13.png new file mode 100644 index 0000000..820079b Binary files /dev/null and b/assets/data/fresh/fresh_section13.png differ diff --git a/assets/data/fresh/fresh_section14.png b/assets/data/fresh/fresh_section14.png new file mode 100644 index 0000000..575497f Binary files /dev/null and b/assets/data/fresh/fresh_section14.png differ diff --git a/assets/data/fresh/fresh_section9.png b/assets/data/fresh/fresh_section9.png new file mode 100644 index 0000000..7479ee9 Binary files /dev/null and b/assets/data/fresh/fresh_section9.png differ diff --git a/source/Boyfriend.hx b/source/Boyfriend.hx index 51af857..a6beb1a 100644 --- a/source/Boyfriend.hx +++ b/source/Boyfriend.hx @@ -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); diff --git a/source/Note.hx b/source/Note.hx index d8420dc..f764c71 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -37,6 +37,7 @@ class Note extends FlxSprite setGraphicSize(Std.int(width * 0.7)); updateHitbox(); + antialiasing = true; switch (Math.abs(noteData)) { diff --git a/source/PlayState.hx b/source/PlayState.hx index 9ee2e09..d42fcc8 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -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;