summary refs log tree commit diff
path: root/Custom keyboard V2/pcb/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'Custom keyboard V2/pcb/index.html')
-rw-r--r--Custom keyboard V2/pcb/index.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/Custom keyboard V2/pcb/index.html b/Custom keyboard V2/pcb/index.html
index 8a6ce3f..6ec3e20 100644
--- a/Custom keyboard V2/pcb/index.html
+++ b/Custom keyboard V2/pcb/index.html
@@ -66,6 +66,7 @@
 			renderer.setSize( window.innerWidth, window.innerHeight );
 			renderer.setAnimationLoop( animate );
 			document.body.appendChild( renderer.domElement );
+			renderer.setClearColor( 0xffffff, 0);
 
 			// controls
 			controls = new OrbitControls( camera, renderer.domElement );
@@ -75,8 +76,8 @@
 			controls.enablePan = true;
 
 			// FPS counter
-			stats = new Stats();
-			document.body.appendChild( stats.dom );
+			//stats = new Stats();
+			//document.body.appendChild( stats.dom );
 		
 			function onMouseDown(){
 					spin = false;
@@ -212,7 +213,7 @@
 
 				renderer.render( scene, camera );
 
-				stats.update();
+				//stats.update();
 
 			}