Ver Fonte

Merge pull request #5138 from nolman/patch-1

Fixing typo
Mr.doob há 11 anos atrás
pai
commit
4411d5f0f3
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/extras/geometries/CubeGeometry.js

+ 1 - 1
src/extras/geometries/CubeGeometry.js

@@ -5,7 +5,7 @@
 
 THREE.CubeGeometry = function ( width, height, depth, widthSegments, heightSegments, depthSegments ) {
 
-	console.warn( 'THEE.CubeGeometry has been renamed to THREE.BoxGeometry.' );
+	console.warn( 'THREE.CubeGeometry has been renamed to THREE.BoxGeometry.' );
 	return new THREE.BoxGeometry( width, height, depth, widthSegments, heightSegments, depthSegments );
 
  };