feat(nuke): add create plugin for backdrop creation

This commit is contained in:
Jakub Jezek 2019-10-29 14:22:05 +01:00
parent ebbc5f6fa9
commit 317b13b5f9
2 changed files with 16 additions and 2 deletions

View file

@ -1,2 +0,0 @@
# creates backdrop which is published as separate nuke script
# it is versioned by major version

View file

@ -0,0 +1,16 @@
from avalon.nuke.pipeline import Creator
class CreateBackdrop(Creator):
"""Add Publishable Backdrop"""
name = "backdrop"
label = "Backdrop"
family = "group"
icon = "cube"
defaults = ["Main"]
def __init__(self, *args, **kwargs):
super(CreateBackdrop, self).__init__(*args, **kwargs)
return