Преглед на файлове

Merge pull request #13940 from gero3/patch-1

Remove unneccessary argument
Mr.doob преди 7 години
родител
ревизия
ec67749b07
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/geometries/ExtrudeGeometry.js

+ 1 - 1
src/geometries/ExtrudeGeometry.js

@@ -72,7 +72,7 @@ function ExtrudeBufferGeometry( shapes, options ) {
 	for ( var i = 0, l = shapes.length; i < l; i ++ ) {
 
 		var shape = shapes[ i ];
-		addShape( shape, options );
+		addShape( shape );
 
 	}