WIP: Blender Kitsu: Convention Checker #124
@ -331,6 +331,13 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
|
||||
default="",
|
||||
)
|
||||
|
||||
convention_config: bpy.props.StringProperty( # type: ignore
|
||||
name="Convention Checker Config Directory",
|
||||
options={"HIDDEN", "SKIP_SAVE"},
|
||||
description="Path to convention checker configuration file.",
|
||||
subtype="DIR_PATH",
|
||||
)
|
||||
|
||||
session: Session = Session()
|
||||
|
||||
tasks: bpy.props.CollectionProperty(type=KITSU_task)
|
||||
@ -425,6 +432,13 @@ class KITSU_addon_preferences(bpy.types.AddonPreferences):
|
||||
box.row().prop(self, "shot_builder_action_prefix")
|
||||
box.row().prop(self, "user_exec_code")
|
||||
|
||||
# Convention Checker
|
||||
box = layout.box()
|
||||
box.label(
|
||||
text="Convention Checker",
|
||||
)
|
||||
box.row().prop(self, "convention_config")
|
||||
|
||||
# Misc settings.
|
||||
box = layout.box()
|
||||
box.label(text="Miscellaneous", icon="MODIFIER")
|
||||
|
Loading…
Reference in New Issue
Block a user