diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-11-07 17:44:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 17:44:43 +0100 |
commit | b61fda9d2a6166e41538405ad8ae24f1aed40570 (patch) | |
tree | f17b752c0b5cc2e56727e9633b3a2df98cf7e9e3 /editor/plugins | |
parent | e2b39bfdc4eda03958ab7506bb59c701c3a3b677 (diff) | |
parent | f9458f92284fd422ba5716c3177e897e5daea87b (diff) |
Merge pull request #68271 from paddy-exe/gdextension-library-loading-error
GDExtension: Improve error message for invalid library feature flags
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/gdextension_export_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/gdextension_export_plugin.h b/editor/plugins/gdextension_export_plugin.h index e1d68d97b5..c5f7d2a047 100644 --- a/editor/plugins/gdextension_export_plugin.h +++ b/editor/plugins/gdextension_export_plugin.h @@ -107,7 +107,7 @@ void GDExtensionExportPlugin::_export_file(const String &p_path, const String &p for (const String &E : p_features) { tags.append(E); } - ERR_FAIL_MSG(vformat("Couldn't export extension: %s. No suitable library found for export flags: %s", p_path, String(", ").join(tags))); + ERR_FAIL_MSG(vformat("No suitable library found. The libraries' tags referred to an invalid feature flag. Possible feature flags for your platform: %s", p_path, String(", ").join(tags))); } List<String> dependencies; |