From bb2a27e2f9ecc37625d019357aedaf75a9df02e0 Mon Sep 17 00:00:00 2001 From: Jerald-Golden-B Date: Tue, 26 Aug 2025 12:33:31 +0530 Subject: [PATCH] added individual rotation to rotation controls --- .../controls/selectionControls/selection3D/rotateControls3D.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/modules/scene/controls/selectionControls/selection3D/rotateControls3D.tsx b/app/src/modules/scene/controls/selectionControls/selection3D/rotateControls3D.tsx index c4a8d19..4f2319f 100644 --- a/app/src/modules/scene/controls/selectionControls/selection3D/rotateControls3D.tsx +++ b/app/src/modules/scene/controls/selectionControls/selection3D/rotateControls3D.tsx @@ -403,6 +403,7 @@ function RotateControls3D() { } setIsRotating(false); + setIsIndividualRotating(false); clearSelection(); }, [rotatedObjects, eventStore, productStore, selectedProduct, updateBackend, projectId, updateAsset, organization, socket, selectedVersion, userId, initialPositions, initialRotations]); @@ -412,6 +413,7 @@ function RotateControls3D() { setMovedObjects([]); setRotatedObjects([]); setSelectedAssets([]); + setIsIndividualRotating(false); }; return null;