Browse Source

Removed accidentally added comments

master
chrisgregan 10 years ago
parent
commit
b8e5708f97
  1. 12
      Assets/Fungus/Narrative/Scripts/Commands/Menu.cs

12
Assets/Fungus/Narrative/Scripts/Commands/Menu.cs

@ -13,13 +13,6 @@ namespace Fungus
[AddComponentMenu("")] [AddComponentMenu("")]
public class Menu : Command public class Menu : Command
{ {
// Menu displays a menu button which will execute the target block when clicked
// Menu Timeout executes a block if the timeout expires
// The 'Hide If Visited' option checks the execution count of the target block
// Hide Say dialog when finished? Let Say command handle that
// Can wrap in an If statement if you need a conditional option
public string text = "Option Text"; public string text = "Option Text";
[Tooltip("Notes about the option text for other authors, localization, etc.")] [Tooltip("Notes about the option text for other authors, localization, etc.")]
@ -111,11 +104,6 @@ namespace Fungus
{ {
return new Color32(184, 210, 235, 255); return new Color32(184, 210, 235, 255);
} }
public override bool RunSlowInEditor()
{
return false;
}
} }
} }
Loading…
Cancel
Save