From 91cda204e49163a2b0467537dd6b8e68133761e4 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Thu, 22 Sep 2022 20:10:07 -0400 Subject: [PATCH] fix missing references in a karate man method --- Assets/Scripts/Games/KarateMan/KarateMan.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Assets/Scripts/Games/KarateMan/KarateMan.cs b/Assets/Scripts/Games/KarateMan/KarateMan.cs index ab92c462f..8b13018f4 100644 --- a/Assets/Scripts/Games/KarateMan/KarateMan.cs +++ b/Assets/Scripts/Games/KarateMan/KarateMan.cs @@ -945,6 +945,9 @@ namespace HeavenStudio.Games void UpdateFilterColour(Color bgColor, Color filterColor) { + bgGradientRenderer = BGGradient.GetComponent(); + bgBloodRenderer = BGBlood.GetComponent(); + bgRadialRenderer = BGRadial.GetComponent(); Color col; if (textureFilterType == (int) ShadowType.Tinted) col = Color.LerpUnclamped(bgColor, ShadowBlendColor, 0.45f);