Added raw textures to extraction

This commit is contained in:
David Benepe
2020-05-30 05:21:06 -05:00
parent 9927931372
commit 4d038b42a5
7 changed files with 2891 additions and 39 deletions
+1 -2
View File
@@ -52,8 +52,7 @@ def get_configs():
global configs
configsFilenames = FileUtil.get_filenames_from_directory(CONFIGS_DIRECTORY)
for configFilename in configsFilenames:
with open(CONFIGS_DIRECTORY + '/' + configFilename, 'r') as configFile:
configs.append(Config(configFile.read()))
configs.append(Config(CONFIGS_DIRECTORY, configFilename))
if(len(configs) > 0):
print('Configs loaded!')