Skip to content

Commit 3d68dff

Browse files
authored
fix: issue 515 (#517)
1 parent 2aa9cdf commit 3d68dff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/CameraControls.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1984,10 +1984,10 @@ export class CameraControls extends EventDispatcher {
19841984
fitToSphere( sphereOrMesh: _THREE.Sphere | _THREE.Object3D, enableTransition: boolean ): Promise<void[]> {
19851985

19861986
const promises: Promise<void>[] = [];
1987-
const isSphere = 'isSphere' in sphereOrMesh;
1988-
const boundingSphere = isSphere ?
1989-
_sphere.copy( sphereOrMesh as _THREE.Sphere ) :
1990-
CameraControls.createBoundingSphere( sphereOrMesh as _THREE.Object3D, _sphere );
1987+
const isObject3D = 'isObject3D' in sphereOrMesh;
1988+
const boundingSphere = isObject3D ?
1989+
CameraControls.createBoundingSphere( sphereOrMesh as _THREE.Object3D, _sphere ) :
1990+
_sphere.copy( sphereOrMesh as _THREE.Sphere );
19911991

19921992
promises.push( this.moveTo(
19931993
boundingSphere.center.x,

0 commit comments

Comments
 (0)