Whenever I create a plane using three.js with the following code:
plane = new THREE.Mesh( new THREE.PlaneGeometry( 10, 10 ), new THREE.MeshBasicMaterial( { color: 0xe0e0e0 } ) );
plane.position = somePoint;
plane.lookAt( someOtherPoint );
scene.add( plane );
The issue I am facing is that the plane appears to be visible from only one side. The other side seems to be invisible even after changing background colors without any effect.
Can you please advise me on what I might be doing incorrectly?