mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Update server_addon/maya/server/settings/publishers.py
Co-authored-by: Roy Nieterau <roy_nieterau@hotmail.com>
This commit is contained in:
parent
a7ee5154b9
commit
fe92a4233d
1 changed files with 16 additions and 2 deletions
|
|
@ -402,8 +402,22 @@ class ExtractAlembicModel(BaseSettingsModel):
|
|||
pythonPostJobCallback: str = SettingsField(
|
||||
title="Python Post Job Callback"
|
||||
)
|
||||
userAttr: str = SettingsField(title="User Attr")
|
||||
userAttrPrefix: str = SettingsField(title="User Attr Prefix")
|
||||
userAttr: str = SettingsField(
|
||||
title="User Attr",
|
||||
placeholder="attr1;attr2",
|
||||
description=(
|
||||
"Attributes matching by name will be included in the Alembic export. "
|
||||
"Attributes should be separated by semi-colon `;`"
|
||||
)
|
||||
)
|
||||
userAttrPrefix: str = SettingsField(
|
||||
title="User Attr Prefix",
|
||||
placeholder="attr1;attr2",
|
||||
description=(
|
||||
"Attributes starting with these prefixes will be included in the Alembic export. "
|
||||
"Attributes should be separated by semi-colon `;`"
|
||||
)
|
||||
)
|
||||
visibleOnly: bool = SettingsField(title="Visible Only")
|
||||
overrides: list[str] = SettingsField(
|
||||
enum_resolver=extract_alembic_overrides_enum, title="Exposed Overrides"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue