Browse Source

BasisTextureLoader: Remove extra param from example.

Don McCurdy 4 years ago
parent
commit
7ab96a59e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/webgl_loader_texture_basis.html

+ 1 - 1
examples/webgl_loader_texture_basis.html

@@ -40,7 +40,7 @@
 
 				scene = new THREE.Scene();
 
-				const geometry = flipY( new THREE.PlaneBufferGeometry( 200, 200, 200 ) );
+				const geometry = flipY( new THREE.PlaneBufferGeometry( 200, 200 ) );
 				const material = new THREE.MeshBasicMaterial( { side: THREE.DoubleSide } );
 
 				mesh = new THREE.Mesh( geometry, material );