From 2883ff82e6c78fee4dc4d7ee579e380da9d40f0b Mon Sep 17 00:00:00 2001 From: "Mr.doob" Date: Thu, 11 Aug 2011 06:03:50 +0200 Subject: [PATCH] Fixed ubiquity test. --- examples/misc_ubiquity_test.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/misc_ubiquity_test.html b/examples/misc_ubiquity_test.html index dae78ef1..5c0c1712 100644 --- a/examples/misc_ubiquity_test.html +++ b/examples/misc_ubiquity_test.html @@ -221,7 +221,7 @@ geometry.computeFaceNormals(); geometry.computeCentroids(); - mesh = new THREE.Mesh( geometry, [ new THREE.MeshFaceMaterial(), new THREE.MeshBasicMaterial( { color: 0xff0000, opacity: 0.5, wireframe: true, wireframeLinewidth: 10 } ) ] ); + mesh = new THREE.Mesh( geometry, [ new THREE.MeshFaceMaterial(), new THREE.MeshBasicMaterial( { color: 0xff0000, opacity: 0.5, transparent: true, wireframe: true, wireframeLinewidth: 10 } ) ] ); mesh.doubleSided = true; mesh.scale.x = mesh.scale.y = mesh.scale.z = 2; scene.addObject( mesh );