From 235969e9a73fc2aa7d517390f230dbe7eca8617d Mon Sep 17 00:00:00 2001 From: Eric Date: Tue, 22 Aug 2023 22:45:58 -0400 Subject: [PATCH] Fixed an issue where the Week 6 countdown was anti-aliased. (#133) --- source/funkin/play/Countdown.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/funkin/play/Countdown.hx b/source/funkin/play/Countdown.hx index 5ccb6e24c..9796c7161 100644 --- a/source/funkin/play/Countdown.hx +++ b/source/funkin/play/Countdown.hx @@ -219,6 +219,8 @@ class Countdown if (isPixelStyle) countdownSprite.setGraphicSize(Std.int(countdownSprite.width * Constants.PIXEL_ART_SCALE)); + countdownSprite.antialiasing = !isPixelStyle; + countdownSprite.updateHitbox(); countdownSprite.screenCenter();