From 4f9ac78c6c2e4a9efe19c2b54af7d41c502142bc Mon Sep 17 00:00:00 2001 From: chrisgregan Date: Tue, 4 Aug 2015 11:40:05 +0100 Subject: [PATCH] SetActive command shows state in summary --- Assets/Fungus/Flowchart/Scripts/Commands/SetActive.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Flowchart/Scripts/Commands/SetActive.cs b/Assets/Fungus/Flowchart/Scripts/Commands/SetActive.cs index bfe971ac..69ad01b7 100644 --- a/Assets/Fungus/Flowchart/Scripts/Commands/SetActive.cs +++ b/Assets/Fungus/Flowchart/Scripts/Commands/SetActive.cs @@ -33,7 +33,7 @@ namespace Fungus return "Error: No game object selected"; } - return targetGameObject.name; + return targetGameObject.name + " = " + activeState.GetDescription(); } public override Color GetButtonColor()