mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-07-01 22:11:15 +00:00
Updated dialogic
This commit is contained in:
parent
1d11462073
commit
cbb82512ee
483 changed files with 5743 additions and 2177 deletions
|
|
@ -78,7 +78,7 @@ func list_dir(subdir:='') -> Array:
|
|||
func list_special_resources(subdir:='', extension:="") -> Dictionary:
|
||||
var dict := {}
|
||||
for i in list_dir(subdir):
|
||||
if extension.is_empty() or i.ends_with(extension):
|
||||
if extension.is_empty() or i.ends_with(extension) or (extension == ".gd" and i.ends_with(".gdc")):
|
||||
dict[DialogicUtil.pretty_name(i).to_lower()] = {"path":i}
|
||||
return dict
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue