mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
feat(nuke): add create plugin for backdrop creation
This commit is contained in:
parent
ebbc5f6fa9
commit
317b13b5f9
2 changed files with 16 additions and 2 deletions
|
|
@ -1,2 +0,0 @@
|
||||||
# creates backdrop which is published as separate nuke script
|
|
||||||
# it is versioned by major version
|
|
||||||
16
pype/plugins/nuke/create/create_backdrop.py
Normal file
16
pype/plugins/nuke/create/create_backdrop.py
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue