Blender Kitsu: Rename Edit Render to Edit Export #249
@ -372,7 +372,7 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
|
||||
return get_safely_string_prop(self, 'edit_export_dir')
|
||||
|
||||
edit_export_dir: bpy.props.StringProperty( # type: ignore
|
||||
name="Export Directory",
|
||||
name="Edit Export Directory",
|
||||
options={"HIDDEN", "SKIP_SAVE"},
|
||||
description="Directory path to editorial's export folder containing storyboard/animatic renders. Path should be similar to '~/shared-{proj_name}/editorial/export/'",
|
||||
subtype="DIR_PATH",
|
||||
@ -397,7 +397,7 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
|
||||
return get_safely_string_prop(self, 'edit_export_file_pattern')
|
||||
|
||||
edit_export_file_pattern: bpy.props.StringProperty( # type: ignore
|
||||
name="Export File Pattern",
|
||||
name="Edit Export File Pattern",
|
||||
options={"HIDDEN", "SKIP_SAVE"},
|
||||
description=(
|
||||
"File pattern for latest editorial export file. "
|
||||
@ -410,7 +410,7 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
|
||||
)
|
||||
|
||||
edit_export_frame_offset: bpy.props.IntProperty( # type: ignore
|
||||
name="Export Offset",
|
||||
name="Edit Export Offset",
|
||||
description="Shift Editorial Export by this frame-range after import",
|
||||
default=-101, # HARD CODED FOR GOLD PROJECTS BLENDER FILM
|
||||
)
|
||||
@ -491,10 +491,10 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
|
||||
# Editorial Settings
|
||||
box = col.box()
|
||||
box.label(text="Editorial", icon="SEQ_SEQUENCER")
|
||||
box.row().prop(self, "edit_export_dir")
|
||||
box.row().prop(self, "edit_export_dir", text="Export Directory")
|
||||
file_pattern_row = box.row(align=True)
|
||||
file_pattern_row.alert = not self.is_edit_export_pattern_valid
|
||||
file_pattern_row.prop(self, "edit_export_file_pattern")
|
||||
file_pattern_row.prop(self, "edit_export_file_pattern", text="Export File Pattern")
|
||||
|
||||
# Lookdev tools settings.
|
||||
self.lookdev.draw(context, col)
|
||||
|
Loading…
Reference in New Issue
Block a user