mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
15 lines
359 B
Python
15 lines
359 B
Python
from avalon.nuke.pipeline import Creator
|
|
|
|
|
|
class CreateBackdrop(Creator):
|
|
"""Add Publishable Backdrop"""
|
|
|
|
name = "nukenodes"
|
|
label = "Create Backdrop"
|
|
family = "nukenodes"
|
|
icon = "file-archive-o"
|
|
defaults = ["Main"]
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(CreateBackdrop, self).__init__(*args, **kwargs)
|
|
return
|