🚧 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,8 @@
-- OpenPype Init Script
(
local sysPath = dotNetClass "System.IO.Path"
local sysDir = dotNetClass "System.IO.Directory"
local startup = sysPath.Combine (sysPath.GetDirectoryName getSourceFile) "startup.py"
python.ExecuteFile startup
)

View file

@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-
from openpype.hosts.max.api import MaxHost
from openpype.pipeline import install_host
host = MaxHost()
install_host(host)