mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
16 lines
370 B
Python
16 lines
370 B
Python
# -*- coding: utf-8 -*-
|
|
import os
|
|
from openpype.modules import OpenPypeModule, IHostAddon
|
|
|
|
MAX_HOST_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
class MaxAddon(OpenPypeModule, IHostAddon):
|
|
name = "max"
|
|
host_name = "max"
|
|
|
|
def initialize(self, module_settings):
|
|
self.enabled = True
|
|
|
|
def get_workfile_extensions(self):
|
|
return [".max"]
|