mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 11:32:13 +00:00
Merge pull request #98483 from timothyqiu/pack-dir-exists
`DirAccessPack`: Fix `file_exists` and `dir_exists` in exported projects
This commit is contained in:
commit
80e73b0dca
@ -590,8 +590,6 @@ String DirAccessPack::get_current_dir(bool p_include_drive) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool DirAccessPack::file_exists(String p_file) {
|
bool DirAccessPack::file_exists(String p_file) {
|
||||||
p_file = fix_path(p_file);
|
|
||||||
|
|
||||||
PackedData::PackedDir *pd = _find_dir(p_file.get_base_dir());
|
PackedData::PackedDir *pd = _find_dir(p_file.get_base_dir());
|
||||||
if (!pd) {
|
if (!pd) {
|
||||||
return false;
|
return false;
|
||||||
@ -600,8 +598,6 @@ bool DirAccessPack::file_exists(String p_file) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool DirAccessPack::dir_exists(String p_dir) {
|
bool DirAccessPack::dir_exists(String p_dir) {
|
||||||
p_dir = fix_path(p_dir);
|
|
||||||
|
|
||||||
return _find_dir(p_dir) != nullptr;
|
return _find_dir(p_dir) != nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user