From c890c7b5fd0b4ba43660a724fa1cb0f1602b6229 Mon Sep 17 00:00:00 2001 From: ACardboardBox <81185552+ACardboardBox1@users.noreply.github.com> Date: Sat, 10 Jul 2021 10:36:26 -0400 Subject: [PATCH] give the logo on the caching screen antialiasing --- source/Caching.hx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/Caching.hx b/source/Caching.hx index 1bbdf50..298d5dc 100644 --- a/source/Caching.hx +++ b/source/Caching.hx @@ -63,7 +63,8 @@ class Caching extends MusicBeatState text.y -= kadeLogo.height / 2 - 125; text.x -= 170; kadeLogo.setGraphicSize(Std.int(kadeLogo.width * 0.6)); - + kadeLogo.antialiasing = true; + kadeLogo.alpha = 0; PlayerSettings.init(); @@ -185,4 +186,4 @@ class Caching extends MusicBeatState FlxG.switchState(new TitleState()); } -} \ No newline at end of file +}