Merge pull request #58772 from keptsecret/fix_filedialog_user_data_access
Fix unable to change directory in user access mode
This commit is contained in:
commit
2724e57288
1 changed files with 8 additions and 0 deletions
|
@ -250,6 +250,14 @@ DirAccess *DirAccess::create(AccessType p_access) {
|
|||
DirAccess *da = create_func[p_access] ? create_func[p_access]() : nullptr;
|
||||
if (da) {
|
||||
da->_access_type = p_access;
|
||||
|
||||
// for ACCESS_RESOURCES and ACCESS_FILESYSTEM, current_dir already defaults to where game was started
|
||||
// in case current directory is force changed elsewhere for ACCESS_RESOURCES
|
||||
if (p_access == ACCESS_RESOURCES) {
|
||||
da->change_dir("res://");
|
||||
} else if (p_access == ACCESS_USERDATA) {
|
||||
da->change_dir("user://");
|
||||
}
|
||||
}
|
||||
|
||||
return da;
|
||||
|
|
Loading…
Reference in a new issue