THREE.JS: Seeing geometry when inside mesh

前端 未结 1 2023
野趣味
野趣味 2021-01-12 07:17

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

相关标签:
1条回答
  • 2021-01-12 07:43
    mesh.material.side = THREE.DoubleSide;
    

    Or

    mesh.material.side = THREE.BackSide;
    

    three.js r.62

    0 讨论(0)
提交回复
热议问题