From e63d0983d0245db11ca513ecfc0a4309fef57543 Mon Sep 17 00:00:00 2001 From: aaronp64 Date: Tue, 23 Apr 2024 16:35:49 -0400 Subject: Fix errors/crashes related to skipped imports - Added check for "animation/fps" key before attempting to use it in EditorSceneFormatImporterBlend::import_scene, to give error instead of crashing - Don't show "Advanced..." button if last import used "Keep File" or "Skip File" - Don't try to call ResourceLoader::load on kept/skipped file when changing importer, which would give an error Fixes #90324 --- modules/gltf/editor/editor_scene_importer_blend.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'modules/gltf/editor') diff --git a/modules/gltf/editor/editor_scene_importer_blend.cpp b/modules/gltf/editor/editor_scene_importer_blend.cpp index abc89e4e97..42c3ecc7cb 100644 --- a/modules/gltf/editor/editor_scene_importer_blend.cpp +++ b/modules/gltf/editor/editor_scene_importer_blend.cpp @@ -298,6 +298,7 @@ Node *EditorSceneFormatImporterBlend::import_scene(const String &p_path, uint32_ } return nullptr; } + ERR_FAIL_COND_V(!p_options.has("animation/fps"), nullptr); #ifndef DISABLE_DEPRECATED bool trimming = p_options.has("animation/trimming") ? (bool)p_options["animation/trimming"] : false; -- cgit v1.2.3