I'm not all that well versed in JavaScript and I've got a scope problem that I can't find a reference on:
class a
{
var CommonNameVar;
}
class b extends a
{
var CommonNameVar;
function Something(){
CommonNameVar = "somevalue";
}
}
How do I specifically reference CommonNameVar
in b and not a (i.e. reference a specific scope of variables)?
It turns out that I'm also not familiar with unityscript and I've made a rather cardinal mistake of assuming that just because this has a .js on the file, that this is javascript (sound like an old sketch from Bob Newhart).
I'll post a new question formatted correctly for the context and declare this one dead.