mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 22:02:15 +01:00
added 'OpenPypeMaya' module
This commit is contained in:
parent
5736b9133c
commit
a2dadc85bd
2 changed files with 17 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import os
|
||||
from .module import OpenPypeMaya
|
||||
|
||||
|
||||
def add_implementation_envs(env, _app):
|
||||
|
|
@ -25,3 +26,9 @@ def add_implementation_envs(env, _app):
|
|||
for key, value in defaults.items():
|
||||
if not env.get(key):
|
||||
env[key] = value
|
||||
|
||||
|
||||
__all__ = (
|
||||
"OpenPypeMaya",
|
||||
"add_implementation_envs",
|
||||
)
|
||||
|
|
|
|||
10
openpype/hosts/maya/module.py
Normal file
10
openpype/hosts/maya/module.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from openpype.modules import OpenPypeModule
|
||||
from openpype.modules.interfaces import IHostModule
|
||||
|
||||
|
||||
class OpenPypeMaya(OpenPypeModule, IHostModule):
|
||||
name = "openpype_maya"
|
||||
host_name = "maya"
|
||||
|
||||
def initialize(self, module_settings):
|
||||
self.enabled = True
|
||||
Loading…
Add table
Add a link
Reference in a new issue