Browse Source

Merge pull request #32540 from codecustard/fix_show_bounds_for_scenes

Fixes scene instances not displaying bounds when selected
Rémi Verschelde 6 years ago
parent
commit
3b2033b941
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/plugins/spatial_editor_plugin.cpp

+ 1 - 1
editor/plugins/spatial_editor_plugin.cpp

@@ -2172,7 +2172,7 @@ void SpatialEditorViewport::_notification(int p_what) {
 
 			VisualInstance *vi = Object::cast_to<VisualInstance>(sp);
 
-			se->aabb = vi ? vi->get_aabb() : AABB(Vector3(-0.2, -0.2, -0.2), Vector3(0.4, 0.4, 0.4));
+			se->aabb = vi ? vi->get_aabb() : _calculate_spatial_bounds(sp, AABB(Vector3(-0.2, -0.2, -0.2), Vector3(0.4, 0.4, 0.4)));
 
 			Transform t = sp->get_global_gizmo_transform();
 			t.translate(se->aabb.position);