diff --git a/pype/plugins/tvpaint/create/create_beauty.py b/pype/plugins/tvpaint/create/create_beauty.py index 5701845288..aaa51f156e 100644 --- a/pype/plugins/tvpaint/create/create_beauty.py +++ b/pype/plugins/tvpaint/create/create_beauty.py @@ -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" diff --git a/pype/plugins/tvpaint/create/create_render_pass.py b/pype/plugins/tvpaint/create/create_render_pass.py index ff60f299a3..37d7c501f9 100644 --- a/pype/plugins/tvpaint/create/create_render_pass.py +++ b/pype/plugins/tvpaint/create/create_render_pass.py @@ -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" diff --git a/pype/plugins/tvpaint/create/create_review.py b/pype/plugins/tvpaint/create/create_review.py index 279e03caea..0163d26160 100644 --- a/pype/plugins/tvpaint/create/create_review.py +++ b/pype/plugins/tvpaint/create/create_review.py @@ -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"