diff --git a/Assets/Fungus/Scripts/Components/MenuDialog.cs b/Assets/Fungus/Scripts/Components/MenuDialog.cs index 75da12d5..b5329bf3 100644 --- a/Assets/Fungus/Scripts/Components/MenuDialog.cs +++ b/Assets/Fungus/Scripts/Components/MenuDialog.cs @@ -294,8 +294,10 @@ namespace Fungus private bool AddOption(string text, bool interactable, bool hideOption, UnityEngine.Events.UnityAction action) { if (nextOptionIndex >= CachedButtons.Length) + { + Debug.LogWarning("Unable to add menu item, not enough buttons: " + text); return false; - + } //if first option notify that a menu has started if(nextOptionIndex == 0) MenuSignals.DoMenuStart(this); @@ -344,6 +346,10 @@ namespace Fungus StopAllCoroutines(); StartCoroutine(WaitForTimeout(duration, targetBlock)); } + else + { + Debug.LogWarning("Unable to show timer, no slider set"); + } } ///