Skip to content

ayon_menu

AyonMenuSettingsModel

Bases: BaseSettingsModel

Customize top AYON menu in Silhouette.

Source code in server/settings/ayon_menu.py
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
class AyonMenuSettingsModel(BaseSettingsModel):
    """Customize top AYON menu in Silhouette."""
    set_frame_range: bool = SettingsField(
        True,
        title="Set Frame Range",
        description=(
            "Set active Session frame range and FPS to match current task "
            "context."
        ),
    )
    set_resolution: bool = SettingsField(
        True,
        title="Set Resolution",
        description=(
            "Set active Session resolution to match current task context."
        ),
    )