|
@@ -135,8 +135,6 @@ THREE.PerspectiveCamera.prototype.clone = function () {
|
|
|
camera.near = this.near;
|
|
|
camera.far = this.far;
|
|
|
|
|
|
- camera.projectionMatrix.copy( this.projectionMatrix );
|
|
|
-
|
|
|
return camera;
|
|
|
|
|
|
};
|
|
@@ -145,6 +143,7 @@ THREE.PerspectiveCamera.prototype.toJSON = function ( meta ) {
|
|
|
|
|
|
var data = THREE.Object3D.prototype.toJSON.call( this, meta );
|
|
|
|
|
|
+ data.object.zoom = this.zoom;
|
|
|
data.object.fov = this.fov;
|
|
|
data.object.aspect = this.aspect;
|
|
|
data.object.near = this.near;
|