Browse Source

Removed (uh! non-working) clearColor from Minecraft example.
@alteredq: I'll try to tackle Minecraft AO next.

Mr.doob 12 years ago
parent
commit
d4e37c7838
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/webgl_geometry_minecraft.html

+ 1 - 1
examples/webgl_geometry_minecraft.html

@@ -193,7 +193,7 @@
 				directionalLight.position.set( 1, 1, 0.5 ).normalize();
 				scene.add( directionalLight );
 
-				renderer = new THREE.WebGLRenderer( { clearColor: 0xbfd1e5 } );
+				renderer = new THREE.WebGLRenderer();
 				renderer.setSize( window.innerWidth, window.innerHeight );
 
 				container.innerHTML = "";