Skip to content

Commit

Permalink
remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Baintner committed Jan 24, 2024
1 parent 0f2b69c commit 83353e9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions utils_bpy/render_settings_setter.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def __init__(self, scene: str = None, view_layers: List[str] = None) -> None:
self.set_scene(scene)
if view_layers != [""]:
self.set_view_layers(view_layers)
print_utils.print_info(bpy.context.scene.render.filepath) # XXX: Remove.

def set_scene(self, scene_name: str) -> None:
"""Set the scene to be rendered."""
Expand Down Expand Up @@ -169,8 +168,6 @@ def set_output_settings(self, frame_step: int, xres: int,
self.current_scene_data.frame_step = frame_step
self.current_scene_data.render.use_stamp = not high_quality
print_utils.print_info("Finished setting the rendering settings!")
print_utils.print_info(bpy.context.scene)
print_utils.print_info(bpy.context.scene.render.filepath) # XXX: Remove.

def custom_commands(self) -> None:
"""Import user commands."""
Expand Down

0 comments on commit 83353e9

Please sign in to comment.