Przeglądaj źródła

Merge pull request #19737 from theundebruijn/patch-1

Removed trailing comma (breaking strict es6 build)
Mr.doob 5 lat temu
rodzic
commit
bee9851106
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/core/BufferAttribute.js

+ 1 - 1
src/core/BufferAttribute.js

@@ -207,7 +207,7 @@ Object.assign( BufferAttribute.prototype, {
 				_vector2.fromBufferAttribute( this, i );
 				_vector2.fromBufferAttribute( this, i );
 				_vector2.applyMatrix3( m );
 				_vector2.applyMatrix3( m );
 
 
-				this.setXY( i, _vector2.x, _vector2.y, );
+				this.setXY( i, _vector2.x, _vector2.y );
 
 
 			}
 			}