gridView.transform.matrix = matrix; // error here when i try new Level1();
}
}
public class Level1 extends Level
{
public function Level1()
{
super();
}
}
Level has gridView defined in designer. When I do something like: new Level(); it works, but new Level1(); throws error where in the line where i noted it, and says that gridView is null.
If its not null in the base class Level, why is it null in derived empty class Level1?