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

发布于 2024-08-16 14:59:28 字数 412 浏览 5 评论 0原文

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

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

和以下错误小枝

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

Im confused, I passed a matrix datatype into the this.graphics.beginBitmapFill(); and i get Implicit coercion of a value of type. below is my code.

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

and the followig error sprigs

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮萍、无处依 2024-08-23 14:59:28

通常,您向 beginBitmapFill 函数传递一个不返回任何内容的参数 theMatrix.translate(30,0) (void),

请改为执行以下操作:

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

It's normal you are passing to the beginBitmapFill function a parameter theMatrix.translate(30,0) who return nothing (void)

do this instead:

theMatrix.translate(30,0);
this.graphics.beginBitmapFill(tileImage,theMatrix);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文