Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
各メッシュ マテリアルごとではなく、すべての階層 (ブランチ) の不透明度/アルファを変更する方法はありますか?
いいえ。ただし、 を使用object.traverse()して、オブジェクトのマテリアルとその子の不透明度を設定できます。
object.traverse()
mesh.traverse( function( node ) { if( node.material ) { node.material.opacity = 0.5; node.material.transparent = true; } });
three.js r.56