Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Nov 13, 2024
2 parents 37822a4 + 43db402 commit 1c0b63c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class MousePanRotateDollyHandler {
}

function isPanning() {
return cameraControl._isKeyDownForAction(cameraControl.MOUSE_PAN, keyDown);
return configs.planView || cameraControl._isKeyDownForAction(cameraControl.MOUSE_PAN, keyDown);
}

function isRotating() {
Expand Down
1 change: 0 additions & 1 deletion types/viewer/scene/models/PerformanceModel/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from "./PerformanceModel";
export * from "./PerformanceNode";
3 changes: 0 additions & 3 deletions types/viewer/scene/models/SceneModel.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,6 @@ export declare class SceneModel extends Component {
*/
get aabb(): number[];


get numEntities(): number;

/**
* The number of entities in this SceneModel.
*
Expand Down
2 changes: 1 addition & 1 deletion types/viewer/scene/nodes/Node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export declare type NodeConfiguration = {
/**
* An {@link Entity} that is a scene graph node that can have child Nodes and {@link Mesh}es.
*/
export declare class Node extends Component implements Omit<Entity, "parent"> {
export declare class Node extends Component {
/**
* @constructor
* @param {Component} owner Owner component. When destroyed, the owner will destroy this component as well.
Expand Down

0 comments on commit 1c0b63c

Please sign in to comment.