diff --git a/Assets/Fungus/Dialog/Commands/Say.cs b/Assets/Fungus/Dialog/Commands/Say.cs index 50f939d1..dd8743ee 100644 --- a/Assets/Fungus/Dialog/Commands/Say.cs +++ b/Assets/Fungus/Dialog/Commands/Say.cs @@ -6,7 +6,7 @@ using System.Collections.Generic; namespace Fungus.Script { [CommandCategory("Dialog")] - [HelpText("Writes a line of story text to the dialog. A condition can be specified for when the story text should be shown.")] + [HelpText("Writes a line of story text to the dialog. A list of options can be specified for the player to choose from. Use a non-zero timeout to give the player a limited time to choose.")] public class Say : FungusCommand { static public DialogController dialogController; diff --git a/Assets/Fungus/FungusScript/Editor/FungusScriptEditor.cs b/Assets/Fungus/FungusScript/Editor/FungusScriptEditor.cs index e4b1be1d..3e00bea6 100644 --- a/Assets/Fungus/FungusScript/Editor/FungusScriptEditor.cs +++ b/Assets/Fungus/FungusScript/Editor/FungusScriptEditor.cs @@ -156,7 +156,7 @@ namespace Fungus.Script { if (categoryAttr.Category == categoryName) { - commandNames.Add(type.Name); + commandNames.Add(GetCommandName(type)); commandTypes.Add(type); } } diff --git a/Assets/Shuttle/NewDialog.unity b/Assets/Shuttle/NewDialog.unity index 3eb876d0..f024d0ef 100644 Binary files a/Assets/Shuttle/NewDialog.unity and b/Assets/Shuttle/NewDialog.unity differ