|
Source code
|
1
2
3
|
ifnot (startscene === null,
blah
)
|
works when variable is not set, great. So I try to kill it
set(startscene,null);
or
set(startscene,'');
or
set(startscene);
and the above code fails.
So I have to check for
ifnot (startscene === null,
and
ifnot (startscene == null,
?
or is there a way to unset a variable?