Move Anim_Setup
module into Blender_Kitsu
#5
@ -295,11 +295,10 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
|
||||
)
|
||||
|
||||
edit_export_dir: bpy.props.StringProperty( # type: ignore
|
||||
name="Edit Export Directory",
|
||||
name="Editorial Export Directory",
|
||||
options={"HIDDEN", "SKIP_SAVE"},
|
||||
description="Directory path to editorial's export folder containing storyboard/animatic exports. Path should be similar to '~/shared-pets/editorial/export/'",
|
||||
subtype="DIR_PATH",
|
||||
# TODO ADD DEFAULT
|
||||
# TODO ADD TO KITSU PREFRENCES UI
|
||||
)
|
||||
session: Session = Session()
|
||||
|
||||
@ -393,6 +392,11 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
|
||||
box.row().prop(self, "shot_counter_digits")
|
||||
box.row().prop(self, "shot_counter_increment")
|
||||
|
||||
# Misc settings.
|
||||
box = layout.box()
|
||||
box.label(text="Shot Builder", icon="MOD_BUILD")
|
||||
box.row().prop(self, "edit_export_dir")
|
||||
|
||||
@property
|
||||
def playblast_root_path(self) -> Optional[Path]:
|
||||
if not self.is_playblast_root_valid:
|
||||
|
Loading…
Reference in New Issue
Block a user