diff --git a/colorbleed/plugins/houdini/create/create_alembic_camera.py b/colorbleed/plugins/houdini/create/create_alembic_camera.py index 43213f46b0..aee47a55ad 100644 --- a/colorbleed/plugins/houdini/create/create_alembic_camera.py +++ b/colorbleed/plugins/houdini/create/create_alembic_camera.py @@ -27,7 +27,7 @@ class CreateAlembicCamera(houdini.Creator): parms = {"use_sop_path": True, "build_from_path": True, "path_attrib": "path", - "filename": "$HIP/%s.abc" % self.name} + "filename": "$HIP/pyblish/%s.abc" % self.name} if self.nodes: node = self.nodes[0] diff --git a/colorbleed/plugins/houdini/create/create_pointcache.py b/colorbleed/plugins/houdini/create/create_pointcache.py index 25671c787e..03c7fc3deb 100644 --- a/colorbleed/plugins/houdini/create/create_pointcache.py +++ b/colorbleed/plugins/houdini/create/create_pointcache.py @@ -28,7 +28,7 @@ class CreatePointCache(houdini.Creator): parms = {"use_sop_path": True, "build_from_path": True, "path_attrib": "path", - "filename": "$HIP/%s.abc" % self.name} + "filename": "$HIP/pyblish/%s.abc" % self.name} if self.nodes: node = self.nodes[0] diff --git a/colorbleed/plugins/houdini/create/create_vbd_cache.py b/colorbleed/plugins/houdini/create/create_vbd_cache.py index b103a046fa..0c26e68053 100644 --- a/colorbleed/plugins/houdini/create/create_vbd_cache.py +++ b/colorbleed/plugins/houdini/create/create_vbd_cache.py @@ -25,7 +25,7 @@ class CreateVDBCache(houdini.Creator): def process(self): instance = super(CreateVDBCache, self).process() - parms = {"sopoutput": "$HIP/geo/%s.$F4.vdb" % self.name} + parms = {"sopoutput": "$HIP/pyblish/%s.$F4.vdb" % self.name} if self.nodes: parms.update({"soppath": self.nodes[0].path()})