File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 958958
959959 updateMatrixWorld ( force ) {
960960
961- const space = this . mode === 'scale' ? this . space : 'local' ; // scale always oriented to local rotation
961+ const space = this . mode === 'scale' ? 'local' : this . space ; // scale always oriented to local rotation
962962
963963 const quaternion = space === 'local' ? this . worldQuaternion : _identityQuaternion ; // Show only gizmos for current transform mode
964964
Original file line number Diff line number Diff line change @@ -1175,7 +1175,7 @@ class TransformControlsGizmo extends Object3D {
11751175
11761176 updateMatrixWorld ( force ) {
11771177
1178- const space = ( this . mode === 'scale' ) ? this . space : 'local' ; // scale always oriented to local rotation
1178+ const space = ( this . mode === 'scale' ) ? 'local' : this . space ; // scale always oriented to local rotation
11791179
11801180 const quaternion = ( space === 'local' ) ? this . worldQuaternion : _identityQuaternion ;
11811181
You can’t perform that action at this time.
0 commit comments