Explorar el Código

Finished CubeGeometry deprecated change.

Mr.doob hace 11 años
padre
commit
f59ab84051
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      src/extras/geometries/CubeGeometry.js

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

@@ -1,6 +1,6 @@
 // DEPRECATED
 
-THREE.CubeGeometry = function(){
+THREE.CubeGeometry = function ( width, height, depth, widthSegments, heightSegments, depthSegments ) {
 	console.warn( 'DEPRECATED: THREE.CubeGeometry is deprecated. Use THREE.BoxGeometry instead.' );
-	return new THREE.BoxGeometry();
-};
+ 	return new THREE.BoxGeometry( width, height, depth, widthSegments, heightSegments, depthSegments );
+ };