Browse Source

Added comment for new SetVariable method.

master
chrisgregan 9 years ago
parent
commit
c0d1575f33
  1. 5
      Assets/Fungus/Flowchart/Scripts/Flowchart.cs

5
Assets/Fungus/Flowchart/Scripts/Flowchart.cs

@ -651,6 +651,10 @@ namespace Fungus
return null; return null;
} }
/**
* Register a new variable with the Flowchart at runtime.
* The variable should be added as a component on the Flowchart game object.
*/
public void SetVariable<T>(string key, T newvariable) where T : Variable public void SetVariable<T>(string key, T newvariable) where T : Variable
{ {
foreach (Variable v in variables) foreach (Variable v in variables)
@ -665,6 +669,7 @@ namespace Fungus
} }
} }
} }
Debug.LogWarning("Variable " + key + " not found."); Debug.LogWarning("Variable " + key + " not found.");
} }

Loading…
Cancel
Save