|
|
|
@ -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"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|