Browse Source

Minor example tweak.

Mr.doob 10 years ago
parent
commit
06b3943c86
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/webgl_modifier_tessellation.html

+ 1 - 1
examples/webgl_modifier_tessellation.html

@@ -267,7 +267,7 @@
 
 			var time = Date.now() * 0.001;
 
-			uniforms.amplitude.value = 0.125 * Math.sin( time * 0.5 );
+			uniforms.amplitude.value = Math.sin( time * 0.5 );
 
 			controls.update();
 			renderer.render( scene, camera );