We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 598d912 commit 937b18fCopy full SHA for 937b18f
1 file changed
Urcheon/Texset.py
@@ -356,7 +356,9 @@ def walk(self):
356
for texture_source_dir in self.texture_source_dir_list:
357
sloth_list = []
358
359
- for dir_name, subdir_name_list, file_name_list in os.walk(texture_source_dir):
+ texture_source_dir_fullpath = os.path.join(self.source_dir, texture_source_dir)
360
+
361
+ for dir_name, subdir_name_list, file_name_list in os.walk(texture_source_dir_fullpath):
362
dir_relpath = os.path.relpath(dir_name, self.source_dir)
363
364
logging.debug("dir_name: " + dir_name + ", subdir_name_list: " + str(subdir_name_list) + ", file_name_list: " + str(file_name_list))
0 commit comments