소스 검색

fix combinedCamera.copy()

godlzr 8 년 전
부모
커밋
80ad7d069f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      examples/js/cameras/CombinedCamera.js

+ 2 - 2
examples/js/cameras/CombinedCamera.js

@@ -111,8 +111,8 @@ THREE.CombinedCamera.prototype.copy = function ( source ) {
 	this.view = source.view === null ? null : Object.assign( {}, source.view );
 	this.aspect = source.aspect;
 
-	this.cameraO = source.cameraO.copy();
-	this.cameraP = source.cameraP.copy();
+	this.cameraO.copy( source.cameraO );
+	this.cameraP.copy( source.cameraP );
 
 	this.inOrthographicMode = source.inOrthographicMode;
 	this.inPerspectiveMode = source.inPerspectiveMode;