hound fix

This commit is contained in:
Kayla Man 2023-01-30 15:09:23 +08:00
parent 01a70c06a4
commit 92986bcff5
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,9 @@
import os
from openpype.pipeline import(
from openpype.pipeline import (
load
)
class FbxLoader(load.LoaderPlugin):
"""Fbx Loader"""

View file

@ -1,8 +1,9 @@
import os
from openpype.pipeline import(
from openpype.pipeline import (
load
)
class MaxSceneLoader(load.LoaderPlugin):
"""Max Scene Loader"""
@ -14,7 +15,6 @@ class MaxSceneLoader(load.LoaderPlugin):
def load(self, context, name=None, namespace=None, data=None):
from pymxs import runtime as rt
import re
path = os.path.normpath(self.fname)
# import the max scene by using "merge file"
path = path.replace('\\', '/')
@ -48,4 +48,3 @@ class MaxSceneLoader(load.LoaderPlugin):
node = container["node"]
rt.delete(node)