Browse Source

VariableEditor popup name and key concat no longer has spaces, allows the PopUp to correctly nest items with the same parent

master
desktop-maesty/steve 6 years ago
parent
commit
77fff64e24
  1. 2
      Assets/Fungus/Scripts/Editor/VariableEditor.cs

2
Assets/Fungus/Scripts/Editor/VariableEditor.cs

@ -107,7 +107,7 @@ namespace Fungus.EditorUtils
} }
} }
variableKeys.Add(fs.name + " / " + v.Key); variableKeys.Add(fs.name + "/" + v.Key);
variableObjects.Add(v); variableObjects.Add(v);
index++; index++;

Loading…
Cancel
Save