Skip to content

Commit 2f813fa

Browse files
committed
fix(core): comment out update matrix automatically
1 parent 44b24e8 commit 2f813fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/core/src/lib/utils/update.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ export function checkNeedsUpdate(value: unknown) {
1010
}
1111

1212
export function checkUpdate(value: unknown) {
13-
if (is.object3D(value)) value.updateMatrix();
13+
// TODO (chau): this is messing with PivotControls. Re-evaluate later
14+
// if (is.object3D(value)) value.updateMatrix();
1415

1516
if (is.camera(value)) {
1617
if (is.perspectiveCamera(value) || is.orthographicCamera(value)) value.updateProjectionMatrix();

0 commit comments

Comments
 (0)