Browse Source

SetActive command shows state in summary

master
chrisgregan 9 years ago
parent
commit
4f9ac78c6c
  1. 2
      Assets/Fungus/Flowchart/Scripts/Commands/SetActive.cs

2
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()

Loading…
Cancel
Save