added poor docstrings

This commit is contained in:
iLLiCiTiT 2020-11-05 14:34:45 +01:00
parent fe3310a222
commit 89ccf0724b
3 changed files with 7 additions and 0 deletions

View file

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

View file

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

View file

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