Remove double is_editor_hint() check inside NOTIFICATION_READY for Camera2D node

`Engine::get_singleton()->is_editor_hint()` is already a part of `is_part_of_edited_scene()` function.
This commit is contained in:
arkology 2024-11-25 09:28:16 +03:00 committed by GitHub
parent 0c45ace151
commit 99886f3204
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -277,7 +277,7 @@ void Camera2D::_notification(int p_what) {
switch (p_what) {
#ifdef TOOLS_ENABLED
case NOTIFICATION_READY: {
if (Engine::get_singleton()->is_editor_hint() && is_part_of_edited_scene()) {
if (is_part_of_edited_scene()) {
ProjectSettings::get_singleton()->connect(SNAME("settings_changed"), callable_mp(this, &Camera2D::_project_settings_changed));
}
} break;