Merge pull request #69012 from KoBeWi/settings_of_editor_project

Allow to override editor settings per project
This commit is contained in:
Thaddeus Crews
2025-06-02 18:51:26 -05:00
22 changed files with 306 additions and 21 deletions

View File

@ -61,7 +61,7 @@ static void _editor_init() {
String blender_path = EDITOR_GET("filesystem/import/blender/blender_path");
if (blender_path.is_empty() && EditorSettings::get_singleton()->has_setting("filesystem/import/blender/blender3_path")) {
blender_path = EditorSettings::get_singleton()->get("filesystem/import/blender/blender3_path");
blender_path = EDITOR_GET("filesystem/import/blender/blender3_path");
if (!blender_path.is_empty()) {
#if defined(MACOS_ENABLED)