away3d WireframeMaterial:设置线的宽度
我很难设置线框材质的宽度。 事情进展顺利,直到我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你的意思不是线框材料的宽度,而是厚度。
您还想更改线框的 alpha 值。
解决方案是设置 WireframeMaterial 的属性
thickness
和wireAlpha
,如下所示: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
andwireAlpha
of WireframeMaterial like this: