alembic loader namespace fix

This commit is contained in:
Kayla Man 2023-08-24 17:27:52 +08:00
parent 637c6396ca
commit d0857a63e0
2 changed files with 0 additions and 4 deletions

View file

@ -63,8 +63,6 @@ class ModelAbcLoader(load.LoaderPlugin):
# rename the abc container with namespace
abc_container_name = f"{namespace}:{name}"
abc_container.name = abc_container_name
# get the correct container
abc_container = rt.GetNodeByName(abc_container_name)
return containerise(
name, [abc_container], context,

View file

@ -70,8 +70,6 @@ class AbcLoader(load.LoaderPlugin):
# rename the abc container with namespace
abc_container_name = f"{namespace}:{name}"
abc_container.name = abc_container_name
# get the correct container
abc_container = rt.GetNodeByName(abc_container_name)
return containerise(
name, [abc_container], context,