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 aa40e64 commit 618c534Copy full SHA for 618c534
Sources/Widgets/Widgets3D/TransformControlsWidget/behavior.js
@@ -169,6 +169,8 @@ export default function widgetBehavior(publicAPI, model) {
169
translation[axisIndex] = translateState.startPos + delta;
170
model.widgetState.getTransform().setTranslation(translation);
171
}
172
+
173
+ return macro.EVENT_ABORT;
174
};
175
176
publicAPI.handleScaleEvent = (callData, axis, axisIndex) => {
@@ -189,6 +191,8 @@ export default function widgetBehavior(publicAPI, model) {
189
191
scales[axisIndex] = scale;
190
192
model.widgetState.getTransform().setScale(scales);
193
194
195
196
197
198
publicAPI.handleRotateEvent = (callData) => {
0 commit comments