mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +00:00
New option to show/hide hidden files
This commit is contained in:
parent
40496dd76a
commit
db0a71fc58
13 changed files with 63 additions and 10 deletions
|
@ -105,6 +105,9 @@ bool DirAccessJAndroid::current_is_dir() const{
|
|||
|
||||
return true;
|
||||
}
|
||||
bool DirAccessAndroid::current_is_hidden() const{
|
||||
return current!="." && current!=".." && current.begins_with(".");
|
||||
}
|
||||
void DirAccessJAndroid::list_dir_end(){
|
||||
|
||||
if (id==0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue