Improve description, remove docstring which was only about the bake_attributes to begin with

This commit is contained in:
Roy Nieterau 2024-03-26 10:38:20 +01:00
parent 5496484aab
commit fe8613b55e

View file

@ -315,16 +315,13 @@ class ExtractMayaSceneRawModel(BaseSettingsModel):
class ExtractCameraAlembicModel(BaseSettingsModel):
"""
List of attributes that will be added to the baked alembic camera. Needs to be written in python list syntax.
"""
enabled: bool = SettingsField(title="ExtractCameraAlembic")
optional: bool = SettingsField(title="Optional")
active: bool = SettingsField(title="Active")
bake_attributes: str = SettingsField(
"[]", title="Bake Attributes", widget="textarea",
description="List of attributes that will be included in the alembic "
"export.",
"camera export. Needs to be written as a JSON list.",
)
@validator("bake_attributes")