소스 검색

Finished CubeGeometry deprecated change.

Mr.doob 11 년 전
부모
커밋
f59ab84051
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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 );
+ };