mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
first step of pype's reorganization
This commit is contained in:
parent
19a46c7cd6
commit
15c0c10a5c
426 changed files with 517 additions and 530 deletions
13
pype/hosts/nuke/plugin.py
Normal file
13
pype/hosts/nuke/plugin.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import re
|
||||
import avalon.api
|
||||
import avalon.nuke
|
||||
from pype.api import config
|
||||
|
||||
class PypeCreator(avalon.nuke.pipeline.Creator):
|
||||
"""Pype Nuke Creator class wrapper
|
||||
"""
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(PypeCreator, self).__init__(*args, **kwargs)
|
||||
self.presets = config.get_presets()['plugins']["nuke"]["create"].get(
|
||||
self.__class__.__name__, {}
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue