🚧 3dsmax addon basics

This commit is contained in:
Ondrej Samohel 2022-11-29 17:29:58 +01:00
parent d2de7c56fc
commit decc8df4ae
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
14 changed files with 299 additions and 3 deletions

View file

@ -0,0 +1,16 @@
# -*- 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"]