This commit is contained in:
2024-10-17 11:11:14 +00:00
3 changed files with 9 additions and 5 deletions

View File

@@ -9,7 +9,8 @@ class ViewGenerator(Runner):
self.config_path = config_path
def run(self):
subprocess.run(['blender', '-b', '-P', '../blender/run_blender.py', '--', self.config_path])
result = subprocess.run(['blender', '-b', '-P', '../blender/run_blender.py', '--', self.config_path])
print()
def create_experiment(self, backup_name=None):
return super().create_experiment(backup_name)