From b8db7c63112c5352c8970f3f88866a34b1df8909 Mon Sep 17 00:00:00 2001 From: chrisgregan Date: Thu, 21 May 2015 15:34:57 +0100 Subject: [PATCH] Description of Call command is out of date #103 --- Assets/Fungus/Flowchart/Scripts/Commands/Call.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Assets/Fungus/Flowchart/Scripts/Commands/Call.cs b/Assets/Fungus/Flowchart/Scripts/Commands/Call.cs index 392cc6e1..b23ad187 100644 --- a/Assets/Fungus/Flowchart/Scripts/Commands/Call.cs +++ b/Assets/Fungus/Flowchart/Scripts/Commands/Call.cs @@ -9,7 +9,7 @@ namespace Fungus [CommandInfo("Flow", "Call", - "Execute another block in the same Flowchart.")] + "Execute another block in the same Flowchart as the command, or in a different Flowchart.")] [AddComponentMenu("")] public class Call : Command { @@ -22,9 +22,9 @@ namespace Fungus public enum CallMode { - Stop, - Continue, - WaitUntilFinished + Stop, // Stop executing the current block after calling + Continue, // Continue executing the current block after calling + WaitUntilFinished // Wait until the called block finishes executing, then continue executing current block } [Tooltip("Select if the calling block should stop or continue executing commands, or wait until the called block finishes.")]