mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
added poor docstrings
This commit is contained in:
parent
fe3310a222
commit
89ccf0724b
3 changed files with 7 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ from avalon.tvpaint import pipeline, lib
|
|||
|
||||
|
||||
class CreateBeauty(pipeline.TVPaintCreator):
|
||||
"""Mark layer group as one instance."""
|
||||
name = "beauty"
|
||||
label = "Beauty"
|
||||
family = "renderLayer"
|
||||
|
|
|
|||
|
|
@ -4,6 +4,11 @@ from avalon.tvpaint import pipeline, lib
|
|||
|
||||
|
||||
class CreateRenderPass(pipeline.TVPaintCreator):
|
||||
"""Render pass is combination of one or more layers from same group.
|
||||
|
||||
Requirement to create Render Pass is to have already created beauty
|
||||
instance. Beauty instance is used as base for subset name.
|
||||
"""
|
||||
name = "render_pass"
|
||||
label = "Render Pass"
|
||||
family = "renderPass"
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ from avalon.tvpaint import pipeline
|
|||
|
||||
|
||||
class CreateReview(pipeline.TVPaintCreator):
|
||||
"""Review for global review of all layers."""
|
||||
name = "review"
|
||||
label = "Review"
|
||||
family = "review"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue