I have a class named Box
that extends Sprite
and when I'm trying to access his transform.matrix3D
property (indeed is the matrix3D
property from an Transform
object) this returns me null
. Why?
package some.place
{
// ... imports ...
public class Box extends Sprite
{
public function Box() {}
public function DoSomething():void
{
var m:Matrix3D = transform.matrix3D;
// here m == null !!! Why???
}
}
}