File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1984,10 +1984,10 @@ export class CameraControls extends EventDispatcher {
1984
1984
fitToSphere ( sphereOrMesh : _THREE . Sphere | _THREE . Object3D , enableTransition : boolean ) : Promise < void [ ] > {
1985
1985
1986
1986
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 ) ;
1991
1991
1992
1992
promises . push ( this . moveTo (
1993
1993
boundingSphere . center . x ,
You can’t perform that action at this time.
0 commit comments