mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Merge pull request #55876 from bradc6/feature/AllowForAbsoluteLibraryPaths
This commit is contained in:
commit
b9b78fdaee
1 changed files with 1 additions and 1 deletions
|
|
@ -426,7 +426,7 @@ Ref<Resource> NativeExtensionResourceLoader::load(const String &p_path, const St
|
|||
return Ref<Resource>();
|
||||
}
|
||||
|
||||
if (!library_path.is_resource_file()) {
|
||||
if (!library_path.is_resource_file() && !library_path.is_absolute_path()) {
|
||||
library_path = p_path.get_base_dir().plus_file(library_path);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue