We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 528777d + 9901e77 commit 94989bcCopy full SHA for 94989bc
addons/dialogic/Core/DialogicResourceUtil.gd
@@ -275,7 +275,7 @@ static func list_resources_of_type(extension:String) -> Array:
275
276
static func scan_folder(path:String, extension:String) -> Array:
277
var list: Array = []
278
- if DirAccess.dir_exists_absolute(path):
+ if DirAccess.dir_exists_absolute(path) and not FileAccess.file_exists(path + "/" + ".gdignore"):
279
var dir := DirAccess.open(path)
280
dir.list_dir_begin()
281
var file_name := dir.get_next()
0 commit comments