Explorar o código

Merge pull request #79947 from timothyqiu/edit-resource

[3.x] Fix OccluderPolyShape handles disappear after release click
Rémi Verschelde %!s(int64=2) %!d(string=hai) anos
pai
achega
412e44f079
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      editor/plugins/spatial_editor_plugin.cpp

+ 1 - 1
editor/plugins/spatial_editor_plugin.cpp

@@ -7270,7 +7270,7 @@ void SpatialEditorPlugin::edit(Object *p_object) {
 }
 
 bool SpatialEditorPlugin::handles(Object *p_object) const {
-	if (p_object->is_class("Spatial")) {
+	if (p_object->is_class("Spatial") || p_object->is_class("Resource")) {
 		return true;
 	} else {
 		// This ensures that gizmos are cleared when selecting a non-Spatial node.