Browse Source

Examples: Fix NaN bug in GLBufferAttribute demo.

Mugen87 5 năm trước cách đây
mục cha
commit
3cca1b4c8e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      examples/webgl_buffergeometry_glbufferattribute.html

+ 1 - 1
examples/webgl_buffergeometry_glbufferattribute.html

@@ -24,6 +24,7 @@
 			var points;
 
 			var particles = 300000;
+			var drawCount = 10000;
 
 			init();
 			animate();
@@ -155,7 +156,6 @@
 
 			}
 
-			var drawCount = 10000;
 			function render() {
 
 				drawCount = ( Math.max( 5000, drawCount ) + Math.floor( 500 * Math.random() ) ) % particles;