From 89fcd72ab7b7bfaa972df784b19c08e386bf4371 Mon Sep 17 00:00:00 2001 From: JordanSantiagoYT Date: Mon, 23 Dec 2024 04:22:10 -0500 Subject: [PATCH] oops forgot to make it switch useRGBShader --- source/StrumNote.hx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/StrumNote.hx b/source/StrumNote.hx index be227ea8e34..60a8b01f2f7 100644 --- a/source/StrumNote.hx +++ b/source/StrumNote.hx @@ -184,7 +184,10 @@ class StrumNote extends FlxSprite public function updateNoteSkin(noteskin:String) { if (texture == "noteskins/" + noteskin || noteskin == ogNoteskin || texture == noteskin) return; //if the noteskin to change to is the same as before then don't update it if (noteskin != null && noteskin.length > 0) texture = "noteskins/" + noteskin; - else texture = "noteskins/NOTE_assets" + Note.getNoteSkinPostfix(); + else { + texture = "noteskins/NOTE_assets" + Note.getNoteSkinPostfix(); + useRGBShader = true; + } } public function updateRGBColors(?r:FlxColor, ?g:FlxColor, ?b:FlxColor) { if (rgbShader != null)