1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

SpatialEditorPlugin should only handle Spatial

This commit is contained in:
Haoyu Qiu
2023-08-03 09:41:48 +08:00
parent 39bbf76584
commit 98803d4edd

View File

@@ -7270,13 +7270,14 @@ void SpatialEditorPlugin::edit(Object *p_object) {
}
bool SpatialEditorPlugin::handles(Object *p_object) const {
if (p_object->is_class("Spatial") || p_object->is_class("Resource")) {
if (p_object->is_class("Spatial")) {
return true;
} else {
}
if (!p_object->is_class("Resource")) {
// This ensures that gizmos are cleared when selecting a non-Spatial node.
const_cast<SpatialEditorPlugin *>(this)->edit((Object *)nullptr);
return false;
}
return false;
}
Dictionary SpatialEditorPlugin::get_state() const {