mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
trayp: rename invisible to hidden
This commit is contained in:
parent
fb586feaf3
commit
3cc78c2f98
4 changed files with 7 additions and 7 deletions
|
|
@ -1,6 +1,6 @@
|
|||
from openpype.pipeline.create import (
|
||||
Creator,
|
||||
InvisibleCreator,
|
||||
HiddenCreator,
|
||||
CreatedInstance
|
||||
)
|
||||
from openpype.lib import (
|
||||
|
|
@ -15,7 +15,7 @@ from .pipeline import (
|
|||
)
|
||||
|
||||
|
||||
class InvisibleTrayPublishCreator(InvisibleCreator):
|
||||
class HiddenTrayPublishCreator(HiddenCreator):
|
||||
host_name = "traypublisher"
|
||||
|
||||
def collect_instances(self):
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ from openpype.client import (
|
|||
)
|
||||
from openpype.hosts.traypublisher.api.plugin import (
|
||||
TrayPublishCreator,
|
||||
InvisibleTrayPublishCreator
|
||||
HiddenTrayPublishCreator
|
||||
)
|
||||
from openpype.hosts.traypublisher.api.editorial import (
|
||||
ShotMetadataSover
|
||||
|
|
@ -60,7 +60,7 @@ CLIP_ATTR_DEFS = [
|
|||
]
|
||||
|
||||
|
||||
class EditorialClipInstanceCreatorBase(InvisibleTrayPublishCreator):
|
||||
class EditorialClipInstanceCreatorBase(HiddenTrayPublishCreator):
|
||||
host_name = "traypublisher"
|
||||
|
||||
def __init__(
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ from .creator_plugins import (
|
|||
BaseCreator,
|
||||
Creator,
|
||||
AutoCreator,
|
||||
InvisibleCreator,
|
||||
HiddenCreator,
|
||||
|
||||
discover_creator_plugins,
|
||||
discover_legacy_creator_plugins,
|
||||
|
|
@ -36,7 +36,7 @@ __all__ = (
|
|||
"BaseCreator",
|
||||
"Creator",
|
||||
"AutoCreator",
|
||||
"InvisibleCreator",
|
||||
"HiddenCreator",
|
||||
|
||||
"discover_creator_plugins",
|
||||
"discover_legacy_creator_plugins",
|
||||
|
|
|
|||
|
|
@ -416,7 +416,7 @@ class Creator(BaseCreator):
|
|||
return self.pre_create_attr_defs
|
||||
|
||||
|
||||
class InvisibleCreator(BaseCreator):
|
||||
class HiddenCreator(BaseCreator):
|
||||
@abstractmethod
|
||||
def create(self, instance_data, source_data):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue