mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
# Conflicts: # openpype/hosts/maya/api/lib.py # openpype/hosts/maya/api/plugin.py # openpype/hosts/maya/plugins/create/create_animation.py # openpype/hosts/maya/plugins/create/create_review.py # openpype/hosts/maya/plugins/load/load_reference.py # openpype/modules/deadline/plugins/publish/submit_maya_deadline.py
76 lines
1.4 KiB
Python
76 lines
1.4 KiB
Python
from .constants import (
|
|
SUBSET_NAME_ALLOWED_SYMBOLS,
|
|
DEFAULT_SUBSET_TEMPLATE,
|
|
PRE_CREATE_THUMBNAIL_KEY,
|
|
)
|
|
|
|
from .subset_name import (
|
|
TaskNotSetError,
|
|
get_subset_name_template,
|
|
get_subset_name,
|
|
)
|
|
|
|
from .creator_plugins import (
|
|
CreatorError,
|
|
|
|
BaseCreator,
|
|
Creator,
|
|
AutoCreator,
|
|
HiddenCreator,
|
|
|
|
discover_legacy_creator_plugins,
|
|
get_legacy_creator_by_name,
|
|
|
|
discover_creator_plugins,
|
|
register_creator_plugin,
|
|
deregister_creator_plugin,
|
|
register_creator_plugin_path,
|
|
deregister_creator_plugin_path,
|
|
|
|
cache_and_get_instances,
|
|
)
|
|
|
|
from .context import (
|
|
CreatedInstance,
|
|
CreateContext
|
|
)
|
|
|
|
from .legacy_create import (
|
|
LegacyCreator,
|
|
legacy_create,
|
|
)
|
|
|
|
|
|
__all__ = (
|
|
"SUBSET_NAME_ALLOWED_SYMBOLS",
|
|
"DEFAULT_SUBSET_TEMPLATE",
|
|
"PRE_CREATE_THUMBNAIL_KEY",
|
|
|
|
"TaskNotSetError",
|
|
"get_subset_name_template",
|
|
"get_subset_name",
|
|
|
|
"CreatorError",
|
|
|
|
"BaseCreator",
|
|
"Creator",
|
|
"AutoCreator",
|
|
"HiddenCreator",
|
|
|
|
"discover_legacy_creator_plugins",
|
|
"get_legacy_creator_by_name",
|
|
|
|
"discover_creator_plugins",
|
|
"register_creator_plugin",
|
|
"deregister_creator_plugin",
|
|
"register_creator_plugin_path",
|
|
"deregister_creator_plugin_path",
|
|
|
|
"cache_and_get_instances",
|
|
|
|
"CreatedInstance",
|
|
"CreateContext",
|
|
|
|
"LegacyCreator",
|
|
"legacy_create",
|
|
)
|