@ -56,7 +56,7 @@ namespace Fungus
operatorsList.Add(new GUIContent("="));
if (variableType == typeof(BooleanVariable))
{
operatorsList.Add(new GUIContent("!"));
operatorsList.Add(new GUIContent("=!"));
}
else if (variableType == typeof(IntegerVariable) ||
variableType == typeof(FloatVariable))
@ -11,7 +11,7 @@ namespace Fungus
public enum SetOperator
Assign, // =
Negate, // !
Negate, // =!
Add, // +=
Subtract, // -=
Multiply, // *=
@ -59,7 +59,7 @@ namespace Fungus
description += " = ";
break;
case SetOperator.Negate:
description += " != ";
description += " =! ";
case SetOperator.Add:
description += " += ";