diff options
author | kobewi <kobewi4e@gmail.com> | 2024-11-15 16:14:38 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-11-16 21:43:18 +0100 |
commit | 3b6705a641d9dfd2fcee24cbbdfa88efca79a840 (patch) | |
tree | 3386bb5b6feb5fcfa45f4507dee2e89cf1cb0f77 /core/io/file_access.cpp | |
parent | 5efd124ca10bf46df62fa2441d80589777e54a5a (diff) | |
download | redot-engine-3b6705a641d9dfd2fcee24cbbdfa88efca79a840.tar.gz |
Support uid:// in more places
Diffstat (limited to 'core/io/file_access.cpp')
-rw-r--r-- | core/io/file_access.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/io/file_access.cpp b/core/io/file_access.cpp index dd826e626b..ef5ca502d4 100644 --- a/core/io/file_access.cpp +++ b/core/io/file_access.cpp @@ -71,7 +71,7 @@ void FileAccess::_set_access_type(AccessType p_access) { Ref<FileAccess> FileAccess::create_for_path(const String &p_path) { Ref<FileAccess> ret; - if (p_path.begins_with("res://")) { + if (p_path.begins_with("res://") || p_path.begins_with("uid://")) { ret = create(ACCESS_RESOURCES); } else if (p_path.begins_with("user://")) { ret = create(ACCESS_USERDATA); @@ -183,13 +183,17 @@ FileAccess::AccessType FileAccess::get_access_type() const { } String FileAccess::fix_path(const String &p_path) const { - //helper used by file accesses that use a single filesystem + // Helper used by file accesses that use a single filesystem. String r_path = p_path.replace("\\", "/"); switch (_access_type) { case ACCESS_RESOURCES: { if (ProjectSettings::get_singleton()) { + if (r_path.begins_with("uid://")) { + r_path = ResourceUID::uid_to_path(r_path); + } + if (r_path.begins_with("res://")) { String resource_path = ProjectSettings::get_singleton()->get_resource_path(); if (!resource_path.is_empty()) { |