We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b24e8 commit 2f813faCopy full SHA for 2f813fa
libs/core/src/lib/utils/update.ts
@@ -10,7 +10,8 @@ export function checkNeedsUpdate(value: unknown) {
10
}
11
12
export function checkUpdate(value: unknown) {
13
- if (is.object3D(value)) value.updateMatrix();
+ // TODO (chau): this is messing with PivotControls. Re-evaluate later
14
+ // if (is.object3D(value)) value.updateMatrix();
15
16
if (is.camera(value)) {
17
if (is.perspectiveCamera(value) || is.orthographicCamera(value)) value.updateProjectionMatrix();
0 commit comments