f2bcd7d61f
Previously, before loading an extension, the editor just tried to retrieve the extension by path to test if it's been loaded already. While this is handled gracefully, it ignored an error thrown inside `GDExtensionManager::get_extension()`, that would essentially still report a not yet loaded extension to the engine's log: ``` ERROR: Condition "!E" is true. Returning: Ref<GDExtension>() at: GDExtensionManager::get_extension (core\extension\gdextension_manager.cpp:165) ``` This change actively checks whether the extension path is known and only then proceeds to actually return the already loaded extension or loads and returns the new one otherwise. |
||
---|---|---|
.. | ||
extension_api_dump.cpp | ||
extension_api_dump.h | ||
gdextension_compat_hashes.cpp | ||
gdextension_compat_hashes.h | ||
gdextension_interface.cpp | ||
gdextension_interface.h | ||
gdextension_manager.cpp | ||
gdextension_manager.h | ||
gdextension.cpp | ||
gdextension.h | ||
make_interface_dumper.py | ||
make_wrappers.py | ||
SCsub |