diff --git a/Assets/Scripts/UI/UIControllerWheel.cs b/Assets/Scripts/UI/UIControllerWheel.cs index 0a3f25c4..0d45faee 100644 --- a/Assets/Scripts/UI/UIControllerWheel.cs +++ b/Assets/Scripts/UI/UIControllerWheel.cs @@ -61,6 +61,15 @@ void Awake() segment.GetComponent().sprite = normalSprite; } + void OnEnable() + { + SelectedSegmentIndex = null; + + // Reset the scale of all menu segments + foreach (GameObject segment in menuSegments) + LeanTween.scale(segment, Vector3.one, 0f); + } + public int GetNumSegments() { return menuSegments.Length;