浏览代码

fixed missing space in GLBufferAttribute example

raub 7 年之前
父节点
当前提交
b5bcd51f20
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/webgl_buffergeometry_points_glbufferattribute.html

+ 1 - 1
examples/webgl_buffergeometry_points_glbufferattribute.html

@@ -127,7 +127,7 @@
 
 
 				setInterval( function () {
 				setInterval( function () {
 
 
-					posAttr.buffer = (posAttr.buffer === pos ) ? pos2 : pos;
+					posAttr.buffer = ( posAttr.buffer === pos ) ? pos2 : pos;
 					posAttr.needsUpdate = true;
 					posAttr.needsUpdate = true;
 
 
 				}, 2000 );
 				}, 2000 );