Browse Source

Applied requested changed to GetVariables method

master
CG-Tespy 5 years ago
parent
commit
b313ab9db0
  1. 2
      Assets/Fungus/Scripts/Components/Flowchart.cs

2
Assets/Fungus/Scripts/Components/Flowchart.cs

@ -803,7 +803,7 @@ namespace Fungus
/// <summary> /// <summary>
/// Returns a list of variables matching the specified type. /// Returns a list of variables matching the specified type.
/// </summary> /// </summary>
public IList<T> GetVariables<T>() where T: Variable public virtual List<T> GetVariables<T>() where T: Variable
{ {
var varsFound = new List<T>(); var varsFound = new List<T>();

Loading…
Cancel
Save