浏览代码

Examples: Clean up.

Mr.doob 5 年之前
父节点
当前提交
56382ed5ce
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      examples/webgl_shader.html

+ 3 - 3
examples/webgl_shader.html

@@ -74,7 +74,7 @@
 			var uniforms;
 
 			init();
-			animate( 0 );
+			animate();
 
 			function init() {
 
@@ -119,11 +119,11 @@
 
 			//
 
-			function animate( timestamp ) {
+			function animate() {
 
 				requestAnimationFrame( animate );
 
-				uniforms[ "time" ].value = timestamp / 1000;
+				uniforms[ "time" ].value = performance.now() / 1000;
 
 				renderer.render( scene, camera );