Browse Source

Minor tweak on colors

Fernando Serrano 5 years ago
parent
commit
ec778395dc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/webxr_vr_handinput_mesh.html

+ 2 - 2
examples/webxr_vr_handinput_mesh.html

@@ -49,7 +49,7 @@
 
 				scene = new THREE.Scene();
 				window.scene = scene;
-				scene.background = new THREE.Color( 0x808080 );
+				scene.background = new THREE.Color( 0x444444 );
 
 				camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 0.1, 10 );
 				camera.position.set( 0, 1.6, 3 );
@@ -60,7 +60,7 @@
 
 				var geometry = new THREE.PlaneBufferGeometry( 4, 4 );
 				var material = new THREE.MeshStandardMaterial( {
-					color: 0x333333,
+					color: 0x222222,
 					roughness: 1.0,
 					metalness: 0.0
 				} );