mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
created harmony specific creator using pype's mixin
This commit is contained in:
parent
112fe8ff51
commit
b290059615
4 changed files with 12 additions and 4 deletions
6
pype/hosts/harmony/api/plugin.py
Normal file
6
pype/hosts/harmony/api/plugin.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
from avalon import harmony
|
||||
from pype.api import PypeCreatorMixin
|
||||
|
||||
|
||||
class Creator(PypeCreatorMixin, harmony.Creator):
|
||||
pass
|
||||
|
|
@ -1,9 +1,10 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Create Composite node for render on farm."""
|
||||
from avalon import harmony
|
||||
from pype.hosts.harmony.api import plugin
|
||||
|
||||
|
||||
class CreateFarmRender(harmony.Creator):
|
||||
class CreateFarmRender(plugin.Creator):
|
||||
"""Composite node for publishing renders."""
|
||||
|
||||
name = "renderDefault"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Create render node."""
|
||||
from avalon import harmony
|
||||
from pype.hosts.harmony.api import plugin
|
||||
|
||||
|
||||
class CreateRender(harmony.Creator):
|
||||
class CreateRender(plugin.Creator):
|
||||
"""Composite node for publishing renders."""
|
||||
|
||||
name = "renderDefault"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from avalon import harmony
|
||||
from pype.hosts.harmony.api import plugin
|
||||
|
||||
|
||||
class CreateTemplate(harmony.Creator):
|
||||
class CreateTemplate(plugin.Creator):
|
||||
"""Composite node for publishing to templates."""
|
||||
|
||||
name = "templateDefault"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue