Fix the order of transformations for selection bounding box in spatial editor.
This was broken in #7438 where the ordering of scaling in Basis::scale() was fixed, but this line of code (which relied on the incorrect behavior) wasn't updated correctly. Fixes #9894.
This commit is contained in:
parent
eb238a04da
commit
d9d9571c8c
1 changed files with 5 additions and 1 deletions
|
@ -1756,7 +1756,11 @@ void SpatialEditorViewport::_notification(int p_what) {
|
|||
|
||||
Transform t = sp->get_global_transform();
|
||||
t.translate(se->aabb.position);
|
||||
t.basis.scale(se->aabb.size);
|
||||
|
||||
// apply AABB scaling before item's global transform
|
||||
Basis aabb_s;
|
||||
aabb_s.scale(se->aabb.size);
|
||||
t.basis = t.basis * aabb_s;
|
||||
|
||||
exist = true;
|
||||
if (se->last_xform == t)
|
||||
|
|
Loading…
Reference in a new issue