From 851d5c241c74f8fa28b844751d01f87e43250a1d Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Sun, 4 Oct 2020 19:31:38 -0700 Subject: [PATCH] fresh Song charted --- assets/data/fresh/fresh.json | 2 +- assets/data/fresh/fresh_section10.png | Bin 0 -> 123 bytes assets/data/fresh/fresh_section11.png | Bin 0 -> 121 bytes assets/data/fresh/fresh_section12.png | Bin 0 -> 125 bytes assets/data/fresh/fresh_section13.png | Bin 0 -> 139 bytes assets/data/fresh/fresh_section14.png | Bin 0 -> 149 bytes assets/data/fresh/fresh_section9.png | Bin 0 -> 117 bytes source/Boyfriend.hx | 2 ++ source/Note.hx | 1 + source/PlayState.hx | 1 + 10 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 assets/data/fresh/fresh_section10.png create mode 100644 assets/data/fresh/fresh_section11.png create mode 100644 assets/data/fresh/fresh_section12.png create mode 100644 assets/data/fresh/fresh_section13.png create mode 100644 assets/data/fresh/fresh_section14.png create mode 100644 assets/data/fresh/fresh_section9.png diff --git a/assets/data/fresh/fresh.json b/assets/data/fresh/fresh.json index a8ef07d5c..166b94d52 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 0000000000000000000000000000000000000000..68c928f3a9ddae6468fabfe04a5eee7b59f814e2 GIT binary patch literal 123 zcmeAS@N?(olHy`uVBq!ia0vp^96&6y#X4);OXk;vd$@?2>_ZKBpd($ literal 0 HcmV?d00001 diff --git a/assets/data/fresh/fresh_section11.png b/assets/data/fresh/fresh_section11.png new file mode 100644 index 0000000000000000000000000000000000000000..ae0b467e27bab0c25d072b73645f8ed84a1551b7 GIT binary patch literal 121 zcmeAS@N?(olHy`uVBq!ia0vp^96&64jP&*mFcT=({MZQ9E`Iqh}E Y-LG;ySLD|O0F7YqboFyt=akR{051wCbpQYW literal 0 HcmV?d00001 diff --git a/assets/data/fresh/fresh_section13.png b/assets/data/fresh/fresh_section13.png new file mode 100644 index 0000000000000000000000000000000000000000..820079b9b8c2b9bbf32cc43d53718f6e941ff52d GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^96+qV!2~21Oj_3tq!^2X+?^QKos)S9Qq9Rw(J*t*>{yQr7sAnXFZN6ybns4@5#y2YLGfSrNr4zV@-K%*HvUHx3vIVCg!09F<;aR2}S literal 0 HcmV?d00001 diff --git a/assets/data/fresh/fresh_section9.png b/assets/data/fresh/fresh_section9.png new file mode 100644 index 0000000000000000000000000000000000000000..7479ee9d69d096c6de04212174893eab35546b2a GIT binary patch literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^96&6b&6C#G=g1%p7)^?F!$eQU->j4bse-%(I$- PS{XcD{an^LB{Ts5!p|XE literal 0 HcmV?d00001 diff --git a/source/Boyfriend.hx b/source/Boyfriend.hx index 51af857e7..a6beb1aab 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 d8420dc81..f764c71bd 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 9ee2e0916..d42fcc8ff 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;