Merge pull request #51276 from lawnjelly/portals_set_active_editor_check
Portals - rooms_set_active needs Editor check
This commit is contained in:
commit
c409e8268c
@ -510,7 +510,12 @@ void RoomManager::rooms_set_active(bool p_active) {
|
||||
_active = p_active;
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
SpatialEditor::get_singleton()->update_portal_tools();
|
||||
if (Engine::get_singleton()->is_editor_hint()) {
|
||||
SpatialEditor *spatial_editor = SpatialEditor::get_singleton();
|
||||
if (spatial_editor) {
|
||||
spatial_editor->update_portal_tools();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user