mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
added Creator plugin for tvpaint and it's creator are using it
This commit is contained in:
parent
c935958a13
commit
bc2c2b4405
4 changed files with 12 additions and 3 deletions
6
pype/hosts/tvpaint/api/plugin.py
Normal file
6
pype/hosts/tvpaint/api/plugin.py
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
from pype.api import PypeCreatorMixin
|
||||||
|
from avalon.tvpaint import pipeline
|
||||||
|
|
||||||
|
|
||||||
|
class Creator(PypeCreatorMixin, pipeline.Creator):
|
||||||
|
pass
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
from avalon.tvpaint import pipeline, lib
|
from avalon.tvpaint import pipeline, lib
|
||||||
|
from pype.hosts.tvpaint.api import plugin
|
||||||
|
|
||||||
|
|
||||||
class CreateRenderlayer(pipeline.Creator):
|
class CreateRenderlayer(plugin.Creator):
|
||||||
"""Mark layer group as one instance."""
|
"""Mark layer group as one instance."""
|
||||||
name = "render_layer"
|
name = "render_layer"
|
||||||
label = "RenderLayer"
|
label = "RenderLayer"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
from avalon.tvpaint import pipeline, lib
|
from avalon.tvpaint import pipeline, lib
|
||||||
|
from pype.hosts.tvpaint.api import plugin
|
||||||
|
|
||||||
|
|
||||||
class CreateRenderPass(pipeline.Creator):
|
class CreateRenderPass(plugin.Creator):
|
||||||
"""Render pass is combination of one or more layers from same group.
|
"""Render pass is combination of one or more layers from same group.
|
||||||
|
|
||||||
Requirement to create Render Pass is to have already created beauty
|
Requirement to create Render Pass is to have already created beauty
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
from avalon.tvpaint import pipeline
|
from avalon.tvpaint import pipeline
|
||||||
|
from pype.hosts.tvpaint.api import plugin
|
||||||
|
|
||||||
|
|
||||||
class CreateReview(pipeline.Creator):
|
class CreateReview(plugin.Creator):
|
||||||
"""Review for global review of all layers."""
|
"""Review for global review of all layers."""
|
||||||
name = "review"
|
name = "review"
|
||||||
label = "Review"
|
label = "Review"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue