first step of pype's reorganization

This commit is contained in:
iLLiCiTiT 2020-05-25 18:20:02 +02:00
parent 19a46c7cd6
commit 15c0c10a5c
426 changed files with 517 additions and 530 deletions

13
pype/hosts/nuke/plugin.py Normal file
View 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__, {}
)