From 7d6ef39352ac63ce1bd3a9901f24ef74b7dd6ce4 Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Fri, 10 Jun 2022 18:31:28 +0200 Subject: [PATCH] Fix #3319: Houdini VDB update wrong file attribute name --- openpype/hosts/houdini/plugins/load/load_vdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/hosts/houdini/plugins/load/load_vdb.py b/openpype/hosts/houdini/plugins/load/load_vdb.py index 06bb9e45e4..54535446a3 100644 --- a/openpype/hosts/houdini/plugins/load/load_vdb.py +++ b/openpype/hosts/houdini/plugins/load/load_vdb.py @@ -102,7 +102,7 @@ class VdbLoader(load.LoaderPlugin): file_path = get_representation_path(representation) file_path = self.format_path(file_path) - file_node.setParms({"fileName": file_path}) + file_node.setParms({"file": file_path}) # Update attribute node.setParms({"representation": str(representation["_id"])}) @@ -110,4 +110,4 @@ class VdbLoader(load.LoaderPlugin): def remove(self, container): node = container["node"] - node.destroy() + node.destroy() \ No newline at end of file