THREE.JS: Seeing geometry when inside mesh

2019-06-16 10:45发布

When entering the geometry, for example a sphere mesh, it acts as if the geometry doesn't exist. The color and texture are visible on the outside. But once I zoom into the mesh, the properties are gone.

How can I make the color and texture of a sphere mesh be visible inside the mesh?

1条回答
女痞
2楼-- · 2019-06-16 11:46
mesh.material.side = THREE.DoubleSide;

Or

mesh.material.side = THREE.BackSide;

three.js r.62

查看更多
登录 后发表回答