Skip to content
This repository has been archived by the owner on Jul 18, 2020. It is now read-only.

Commit

Permalink
Added information messages when using Secondary File Output or Save w…
Browse files Browse the repository at this point in the history
…ith Blend file to avoid/mitigate confusion and misunderstandings in users
  • Loading branch information
DavidBluecame committed Jul 12, 2016
1 parent f051ff7 commit 49cfb4c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ui/properties_yaf_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ def draw(self, context):
layout = self.layout
rd = context.scene.render

if context.scene.img_save_with_blend_file:
row = layout.row()
row.label("Parameter 'Save with Blend file' is enabled in the Output options.", icon="INFO")
row = layout.row()
row.label("Be aware that the first time you render, it will change *automatically* the image output folder", icon="INFO")
if context.scene.gs_secondary_file_output:
row = layout.row()
row.label("Parameter 'Secondary File Output' is enabled in the General Settings options.", icon="INFO")
row = layout.row()
row.label("Be aware that even when rendering into Blender, it will save images to the image output folder", icon="INFO")
row = layout.row()
row.operator("render.render_still", text="Image", icon='RENDER_STILL')
row.operator("render.render_animation", text="Animation", icon='RENDER_ANIMATION')
Expand Down

0 comments on commit 49cfb4c

Please sign in to comment.