Browse Source

Restore light setting for MMDLoader example.

Takahiro 8 years ago
parent
commit
0a5d2c1e0b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/webgl_loader_mmd.html

+ 2 - 2
examples/webgl_loader_mmd.html

@@ -76,10 +76,10 @@
 
 				scene = new THREE.Scene();
 
-				var ambient = new THREE.AmbientLight( 0x444444 );
+				var ambient = new THREE.AmbientLight( 0x666666 );
 				scene.add( ambient );
 
-				var directionalLight = new THREE.DirectionalLight( 0x888888 );
+				var directionalLight = new THREE.DirectionalLight( 0x887766 );
 				directionalLight.position.set( -1, 1, 1 ).normalize();
 				scene.add( directionalLight );