mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Update descriptions for 'View' and 'Colorspace' settings. Add deprecation notice for 'Baking' setting in ImageIOSettings.
- Update descriptions for 'View' and 'Colorspace' settings to include information about using Anatomy context tokens. - Add a deprecation notice for the 'Baking' setting in ImageIOSettings, recommending the use of 'Baking Target Colorspace'.
This commit is contained in:
parent
67b59f9af4
commit
35e180149b
2 changed files with 11 additions and 4 deletions
|
|
@ -153,7 +153,10 @@ class DisplayAndViewProfileModel(BaseSettingsModel):
|
|||
view: str = SettingsField(
|
||||
"",
|
||||
title="View",
|
||||
description="What view to use",
|
||||
description=(
|
||||
"What view to use. Anatomy context tokens can "
|
||||
"be used to dynamically set the value."
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -175,7 +178,10 @@ class ColorspaceConfigurationModel(BaseSettingsModel):
|
|||
colorspace: str = SettingsField(
|
||||
"",
|
||||
title="Colorspace",
|
||||
description="What colorspace name to use",
|
||||
description=(
|
||||
"What colorspace name to use. Anatomy context tokens can "
|
||||
"be used to dynamically set the value."
|
||||
),
|
||||
)
|
||||
|
||||
display_view: DisplayAndViewProfileModel = SettingsField(
|
||||
|
|
|
|||
|
|
@ -207,8 +207,9 @@ class ImageIOSettings(BaseSettingsModel):
|
|||
baking: ViewProcessModel = SettingsField(
|
||||
default_factory=ViewProcessModel,
|
||||
title="Baking",
|
||||
description="""Baking profile is used during
|
||||
publishing baked colorspace data at knob viewerProcess"""
|
||||
description="""[DEPRECATED - use 'Baking Target Colorspace' instead]
|
||||
Baking profile is used during
|
||||
publishing baked colorspace data at knob viewerProcess""",
|
||||
)
|
||||
|
||||
workfile: WorkfileColorspaceSettings = SettingsField(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue