Three.js: Plane visible only half the time

javascript, three.js

Solution

Note that this has changed slightly in Three.js revision r50. Rendering both sides of a plane can be achieved through the `side` property on the Material, i.e.

plane.material.side = THREE.DoubleSide;

Look here for more details.

Problem

I've created a plane, which I rotate, using Three.js. For some reason, the plane doesn't show half the time. I've created a fiddle here showing the behaviour.

Original source

Related problems