From b5a5cdc890e3fafe7f84b07699c39adb67035338 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Fri, 12 Sep 2025 10:01:47 -0700 Subject: [PATCH] Fix default color thing --- Assets/Scripts/SettingsMenu.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/SettingsMenu.cs b/Assets/Scripts/SettingsMenu.cs index 4c1e181..55a03c1 100644 --- a/Assets/Scripts/SettingsMenu.cs +++ b/Assets/Scripts/SettingsMenu.cs @@ -42,7 +42,7 @@ public class SettingsMenu : MonoBehaviour settingsMenu.SetActive(!settingsMenu.activeSelf); colorMenu.gameObject.SetActive(!colorMenu.gameObject.activeSelf); toggleButton.transform.GetChild(0).GetComponent().text = settingsMenu.activeSelf ? "Colors" : "Settings"; - SwitchColorType(3); + SwitchColorType(4); foreach (CustomColorObject customColorObject in FindObjectsByType(FindObjectsSortMode.None)) customColorObject.SetColor(); }); switchColorTypeButton.onClick.AddListener(() => SwitchColorType());