mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
16 lines
338 B
Python
16 lines
338 B
Python
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
|