|
|
@ -510,6 +510,7 @@ namespace Fungus.EditorUtils |
|
|
|
{ |
|
|
|
{ |
|
|
|
GUILayout.Space(8); |
|
|
|
GUILayout.Space(8); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EditorGUI.BeginChangeCheck(); |
|
|
|
|
|
|
|
|
|
|
|
if (variableListAdaptor != null) |
|
|
|
if (variableListAdaptor != null) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -519,6 +520,11 @@ namespace Fungus.EditorUtils |
|
|
|
variableListAdaptor.DrawVarList(0); |
|
|
|
variableListAdaptor.DrawVarList(0); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(EditorGUI.EndChangeCheck()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
EditorUtility.SetDirty(flowchart); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Rect variableWindowRect = GUILayoutUtility.GetLastRect(); |
|
|
|
Rect variableWindowRect = GUILayoutUtility.GetLastRect(); |
|
|
|
if (flowchart.VariablesExpanded && flowchart.Variables.Count > 0) |
|
|
|
if (flowchart.VariablesExpanded && flowchart.Variables.Count > 0) |
|
|
|
{ |
|
|
|
{ |
|
|
|