Skip to content

publish

AOVFilterSubmodel

Bases: BaseSettingsModel

You should use the same host name you are using for Houdini.

Source code in server/settings/publish.py
18
19
20
21
22
23
24
class AOVFilterSubmodel(BaseSettingsModel):
    """You should use the same host name you are using for Houdini."""
    host_name: str = SettingsField("", title="Houdini Host name")
    value: list[str] = SettingsField(
        default_factory=list,
        title="AOV regex"
    )

CollectAssetHandlesModel

Bases: BaseSettingsModel

Collect Frame Range Disable this if you want the publisher to ignore start and end handles specified in the asset data for publish instances

Source code in server/settings/publish.py
 8
 9
10
11
12
13
14
15
class CollectAssetHandlesModel(BaseSettingsModel):
    """Collect Frame Range
    Disable this if you want the publisher to
    ignore start and end handles specified in the
    asset data for publish instances
    """
    use_asset_handles: bool = SettingsField(
        title="Use asset handles")