Merged in feature/nuke-create-backdrop (pull request #360)

Nuke: Create plugin for backdrop creation
This commit is contained in:
Jakub Ježek 2019-11-13 09:17:59 +00:00
commit 1e523caa52
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