Blender Kitsu: Move Render Review into Blender Kitsu #296

Merged
Showing only changes of commit 321f919639 - Show all commits

View File

@ -491,9 +491,6 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
set=set_farm_dir, set=set_farm_dir,
) )
##########################
# Render Review Settings
##########################
shot_name_filter: bpy.props.StringProperty( # type: ignore shot_name_filter: bpy.props.StringProperty( # type: ignore
name="Shot Name Filter", name="Shot Name Filter",
description="Shot name must include this string, otherwise it will be ignored", description="Shot name must include this string, otherwise it will be ignored",
@ -509,8 +506,8 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
description="Only load video files for the latest versions by default, to avoid running out of memory and crashing", description="Only load video files for the latest versions by default, to avoid running out of memory and crashing",
) )
skip_incomplete_renders: bpy.props.BoolProperty( # type:ignore skip_incomplete_renders: bpy.props.BoolProperty( # type: ignore
default=False, default=True,
name="Skip Incomplete Renders", name="Skip Incomplete Renders",
description="Skip renders that are shorter than the longest render for a give shot, (i.e. missing frames)", description="Skip renders that are shorter than the longest render for a give shot, (i.e. missing frames)",
) )