When I make a plane in three.js, like this:
plane = new THREE.Mesh( new THREE.PlaneGeometry( 10, 10 ), new THREE.MeshBasicMaterial( { color: 0xe0e0e0 } ) );
plane.position = somePoint;
plane.lookAt( someOtherPoint );
scene.add( plane );
the plane is only vissible from one side. The other side is invisible. I have tried changing the background color and the other side still doesn’t show.
What am I doing wrong?
or alternatively,
three.js r.51
I hope your planes feel better.