Something weird is happening when I change a variable value in script and hit play the var value doesn't update I have to reset the script in inspector. Is this normal? Aren't the values suppose to update when we hit play?
The Simple Code I used to test this:
var a:int=0;
function Start () {
print(a);
}