Skip to content

Commit

Permalink
Output filepath of each frame rendered
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoomph committed Aug 2, 2019
1 parent e945479 commit 49d794d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/windows/views/blender_listview.py
Expand Up @@ -800,15 +800,14 @@ def Render(self, blend_file_path, target_script, preview_mode=False):
# Does it have a match?
if output_saved:
# Yes, we have a match
log.info("Image detected from blender regex: %s" % output_saved)
self.frame_detected = True
image_path = output_saved[0][0]
time_saved = output_saved[0][1]

# Update preview image
log.info("Image detected from blender regex: %s" % image_path)
self.image_updated.emit(image_path)


# Re-enable the interface
self.enable_interface.emit()

Expand Down

0 comments on commit 49d794d

Please sign in to comment.