added create folder to pipeline

This commit is contained in:
iLLiCiTiT 2021-07-19 13:54:21 +02:00
parent 33c4fee06c
commit 3c448429b0
3 changed files with 16 additions and 2 deletions

View file

@ -1,6 +1,6 @@
from .lib import attribute_definitions
from .creator_plugins import (
from .create import (
BaseCreator,
Creator,
AutoCreator,

View file

@ -0,0 +1,14 @@
from .creator_plugins import (
BaseCreator,
Creator,
AutoCreator,
CreatedInstance
)
__all__ = (
"BaseCreator",
"Creator",
"AutoCreator",
"CreatedInstance"
)

View file

@ -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