Fix missing import

This commit is contained in:
Roy Nieterau 2022-06-29 13:23:11 +02:00
parent 6779d0a88a
commit 251a54581c

View file

@ -1,8 +1,10 @@
import os
from openpype.api import get_project_settings
from openpype.pipeline import load
from openpype.pipeline import (
load,
get_representation_path
)
# TODO aiVolume doesn't automatically set velocity fps correctly, set manual?
@ -85,7 +87,7 @@ class LoadVDBtoArnold(load.LoaderPlugin):
from maya import cmds
path = api.get_representation_path(representation)
path = get_representation_path(representation)
# Find VRayVolumeGrid
members = cmds.sets(container['objectName'], query=True)