mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
added create folder to pipeline
This commit is contained in:
parent
33c4fee06c
commit
3c448429b0
3 changed files with 16 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
from .lib import attribute_definitions
|
||||
|
||||
from .creator_plugins import (
|
||||
from .create import (
|
||||
BaseCreator,
|
||||
Creator,
|
||||
AutoCreator,
|
||||
|
|
|
|||
14
openpype/pipeline/create/__init__.py
Normal file
14
openpype/pipeline/create/__init__.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
from .creator_plugins import (
|
||||
BaseCreator,
|
||||
Creator,
|
||||
AutoCreator,
|
||||
CreatedInstance
|
||||
)
|
||||
|
||||
|
||||
__all__ = (
|
||||
"BaseCreator",
|
||||
"Creator",
|
||||
"AutoCreator",
|
||||
"CreatedInstance"
|
||||
)
|
||||
|
|
@ -10,7 +10,7 @@ from abc import (
|
|||
)
|
||||
import six
|
||||
|
||||
from .lib import UnknownDef
|
||||
from ..lib import UnknownDef
|
||||
import avalon.api
|
||||
from openpype.lib import get_subset_name
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue