Is it not possible in UnityScript to change the value of a boolean variable with the NOT operator?
This is what I would expect:
var x = true;
var y = true;
var x = !y;
//variable x is now false
Is this not something you can do in UnityScript? I believe it works in regular JavaScript...
↧