A-Frame gltf 2.0 无法设置不透明度

A-Frame gltf 2.0 can't set opacity

我在 A-Frame 场景中导入动画 gltf 2.0 模型。

我想将其不透明度设置为 0.5。但它不起作用,即使我尝试用 object3D class.

修改值

Hier 是关于 glitch 的演示项目: https://glitch.com/edit/#!/animated-gltf-opacity

感谢您的帮助。

您需要等到模型加载完毕,将您的代码抛给事件侦听器:

this.el.addEventListener("model-loaded", (e)=>{//change opacity})

看看here.