diff --git a/Assets/Fungus/Scripts/Commands/SetVariable.cs b/Assets/Fungus/Scripts/Commands/SetVariable.cs index 051ac006..9c551607 100644 --- a/Assets/Fungus/Scripts/Commands/SetVariable.cs +++ b/Assets/Fungus/Scripts/Commands/SetVariable.cs @@ -11,7 +11,7 @@ namespace Fungus public enum SetOperator { /// = operator. - Assign, // + Assign, /// =! operator. Negate, /// += operator. diff --git a/Assets/Fungus/Scripts/Editor/SetVariableEditor.cs b/Assets/Fungus/Scripts/Editor/SetVariableEditor.cs index e14936d0..8d200f6a 100644 --- a/Assets/Fungus/Scripts/Editor/SetVariableEditor.cs +++ b/Assets/Fungus/Scripts/Editor/SetVariableEditor.cs @@ -66,7 +66,7 @@ namespace Fungus.EditorUtils operatorsList.Add(new GUIContent("+=")); operatorsList.Add(new GUIContent("-=")); operatorsList.Add(new GUIContent("*=")); - operatorsList.Add(new GUIContent("/=")); + operatorsList.Add(new GUIContent("\\=")); } int selectedIndex = 0;