From 792bae854bc04cb86121ae26c08165d71c309a47 Mon Sep 17 00:00:00 2001 From: wikoreman Date: Wed, 3 Oct 2018 12:18:04 +0200 Subject: [PATCH 1/2] Removed out from the sop_path value --- colorbleed/plugins/houdini/create/create_pointcache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colorbleed/plugins/houdini/create/create_pointcache.py b/colorbleed/plugins/houdini/create/create_pointcache.py index 698594796d..481404dcec 100644 --- a/colorbleed/plugins/houdini/create/create_pointcache.py +++ b/colorbleed/plugins/houdini/create/create_pointcache.py @@ -28,6 +28,6 @@ class CreatePointCache(houdini.Creator): if self.nodes: node = self.nodes[0] - parms.update({"sop_path": "%s/OUT" % node.path()}) + parms.update({"sop_path": node.path()}) instance.setParms(parms) From cfe8548bdb6d8b9904969ae92d7216b611718425 Mon Sep 17 00:00:00 2001 From: wikoreman Date: Wed, 3 Oct 2018 12:18:46 +0200 Subject: [PATCH 2/2] Consistency update --- colorbleed/plugins/houdini/create/create_vbd_cache.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/colorbleed/plugins/houdini/create/create_vbd_cache.py b/colorbleed/plugins/houdini/create/create_vbd_cache.py index 5a52f6da7f..aadd222d41 100644 --- a/colorbleed/plugins/houdini/create/create_vbd_cache.py +++ b/colorbleed/plugins/houdini/create/create_vbd_cache.py @@ -27,6 +27,7 @@ class CreateVDBCache(houdini.Creator): "initsim": True} if self.nodes: - parms.update({"soppath": self.nodes[0].path()}) + node = self.nodes[0] + parms.update({"sop_path": node.path()}) instance.setParms(parms)