away3d WireframeMaterial:设置线的宽度

发布于 2024-10-19 02:31:11 字数 196 浏览 1 评论 0原文

我很难设置线框材质的宽度。 事情进展顺利,直到我从 2.5 升级到 3.6

我正在做:

var mat = WireframeMaterial(0xff0000, {width:4, alpha:alphaValue});

但这根本不起作用 宽度仍然设置为 1 !!

知道如何解决吗?

非常感谢,

I am having a difficult time setting the width of a WireframeMaterial.
Things were working well until I upgraded to from 2.5 to 3.6

I am doing:

var mat = WireframeMaterial(0xff0000, {width:4, alpha:alphaValue});

but that's not working at all
the width is still set to 1 !!

any idea how that might be resolved?

thank you very much,

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

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

发布评论

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

评论(1

尛丟丟 2024-10-26 02:31:11

我猜你的意思不是线框材料的宽度,而是厚度。
您还想更改线框的 alpha 值。

解决方案是设置 WireframeMaterial 的属性 thicknesswireAlpha,如下所示:

var material:WireframeMaterial = new WireframeMaterial(0xff0000, {thickness: 4, wireAlpha: alphaValue});

I guess what you mean is not width, but thickness of a WireframeMaterial.
You also want to change the alpha value of the wireframe.

The solution is to set the properties thickness and wireAlpha of WireframeMaterial like this:

var material:WireframeMaterial = new WireframeMaterial(0xff0000, {thickness: 4, wireAlpha: alphaValue});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文