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:
Ferenc Arn 2017-08-22 20:05:41 -04:00
parent eb238a04da
commit d9d9571c8c

View file

@ -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)