Browse Source

remove unused argument width

angus 6 years ago
parent
commit
77fbbe2305
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/webgl_materials_cubemap_mipmaps.html

+ 1 - 1
examples/webgl_materials_cubemap_mipmaps.html

@@ -36,7 +36,7 @@
 				var mipmaps = [];
 				var maxLevel = 8;
 
-				async function loadCubeTexture( urls, width ) {
+				async function loadCubeTexture( urls ) {
 
 					return new Promise( function ( resolve, reject) {