summaryrefslogtreecommitdiffstats
path: root/modules/gltf/register_types.cpp
diff options
context:
space:
mode:
authormxaddict <mxaddict@codedmaster.com>2023-11-28 17:56:04 +0800
committermxaddict <mxaddict@codedmaster.com>2024-01-27 00:41:53 +0800
commitad106a283b5bd577e159149fe4afa074c0b28f3e (patch)
tree794c5da7b1c8220d898a572815d19e01de7f8bc5 /modules/gltf/register_types.cpp
parent17e7f85c06366b427e5068c5b3e2940e27ff5f1d (diff)
downloadredot-engine-ad106a283b5bd577e159149fe4afa074c0b28f3e.tar.gz
Update blender_path behavior to require exact path to executable instead of trying to guess it
Diffstat (limited to 'modules/gltf/register_types.cpp')
-rw-r--r--modules/gltf/register_types.cpp46
1 files changed, 31 insertions, 15 deletions
diff --git a/modules/gltf/register_types.cpp b/modules/gltf/register_types.cpp
index 94c9d66f78..216309abf1 100644
--- a/modules/gltf/register_types.cpp
+++ b/modules/gltf/register_types.cpp
@@ -55,23 +55,39 @@ static void _editor_init() {
// Blend to glTF importer.
+ 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");
+
+ if (!blender_path.is_empty()) {
+#if defined(MACOS_ENABLED)
+ if (blender_path.contains(".app")) {
+ blender_path += "/Contents/MacOS/Blender";
+ } else {
+ blender_path += "/blender";
+ }
+#elif defined(WINDOWS_ENABLED)
+ blender_path += "\\blender.exe";
+#elif defined(UNIX_ENABLED)
+ blender_path += "/blender";
+#endif
+
+ EditorSettings::get_singleton()->set("filesystem/import/blender/blender_path", blender_path);
+ }
+
+ EditorSettings::get_singleton()->erase("filesystem/import/blender/blender3_path");
+ EditorSettings::get_singleton()->save();
+ }
+
bool blend_enabled = GLOBAL_GET("filesystem/import/blender/enabled");
- String blender3_path = EDITOR_GET("filesystem/import/blender/blender3_path");
if (blend_enabled) {
- Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
- if (blender3_path.is_empty()) {
- WARN_PRINT(TTR("Blend file import is enabled in the project settings, but no Blender path is configured in the editor settings. Blend files will not be imported."));
- } else if (!da->dir_exists(blender3_path)) {
- WARN_PRINT(TTR("Blend file import is enabled, but the Blender path doesn't point to an accessible directory. Blend files will not be imported."));
- } else {
- Ref<EditorSceneFormatImporterBlend> importer;
- importer.instantiate();
- ResourceImporterScene::add_scene_importer(importer);
-
- Ref<EditorFileSystemImportFormatSupportQueryBlend> blend_import_query;
- blend_import_query.instantiate();
- EditorFileSystem::get_singleton()->add_import_format_support_query(blend_import_query);
- }
+ Ref<EditorSceneFormatImporterBlend> importer;
+ importer.instantiate();
+ ResourceImporterScene::add_scene_importer(importer);
+
+ Ref<EditorFileSystemImportFormatSupportQueryBlend> blend_import_query;
+ blend_import_query.instantiate();
+ EditorFileSystem::get_singleton()->add_import_format_support_query(blend_import_query);
}
memnew(EditorImportBlendRunner);
EditorNode::get_singleton()->add_child(EditorImportBlendRunner::get_singleton());