Skip to content

Commit

Permalink
[Blender export][Fixed] Call to get_output_filename
Browse files Browse the repository at this point in the history
- Missing order argument
  • Loading branch information
set-soft committed Aug 16, 2023
1 parent 948a40f commit 17df07c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kibot/out_blender_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,11 @@ def get_targets(self, out_dir):
files = []
if isinstance(self.pcb3d, PCB3DExportOptions):
files.append(self.pcb3d.get_output_name(out_dir))
order = 1
for pov in self.point_of_view:
for o in self.outputs:
files.append(self.get_output_filename(o, out_dir, pov))
for _ in range(pov.steps):
for o in self.outputs:
files.append(self.get_output_filename(o, out_dir, pov, order))
return files

def create_vrml(self, dest_dir):
Expand Down

0 comments on commit 17df07c

Please sign in to comment.