1067:将void类型的值隐式强制转换为不相关类型flash.geom:Matrix

时间:2009-12-31 01:23:20

标签: actionscript-3 matrix bitmap tile

我很困惑,我将一个矩阵数据类型传递给this.graphics.beginBitmapFill();我得到了类型值的隐式强制。下面是我的代码。

var theMatrix:Matrix;
            theMatrix = new Matrix();
            this.graphics.beginBitmapFill(tileImage,theMatrix.translate(30,0));
            this.graphics.endFill();

和followig错误sprigs

1067: Implicit coercion of a value of type void to an unrelated type flash.geom:Matrix.

1 个答案:

答案 0 :(得分:1)

您传递给beginBitmapFill函数的参数theMatrix.translate(30,0)没有返回任何内容(void

是正常的

改为:

theMatrix.translate(30,0);
this.graphics.beginBitmapFill(tileImage,theMatrix);