mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
* copied addons from 'ayon-addon-settings' * added AE, photoshop and harmony addon * moved openpype to subfolder * cleanup repository files * updated create package script and README.md * formatting fixes * added cli flags to be able keep server structure * print progress and output dir * another formatting fixes
20 lines
527 B
Python
20 lines
527 B
Python
from pydantic import Field
|
|
from ayon_server.settings import BaseSettingsModel
|
|
|
|
|
|
class ImageSequenceLoaderModel(BaseSettingsModel):
|
|
family: list[str] = Field(
|
|
default_factory=list,
|
|
title="Families"
|
|
)
|
|
representations: list[str] = Field(
|
|
default_factory=list,
|
|
title="Representations"
|
|
)
|
|
|
|
|
|
class HarmonyLoadModel(BaseSettingsModel):
|
|
ImageSequenceLoader: ImageSequenceLoaderModel = Field(
|
|
default_factory=ImageSequenceLoaderModel,
|
|
title="Load Image Sequence"
|
|
)
|