Use $HIP/pyblsih as output directory

This commit is contained in:
wikoreman 2018-09-28 15:18:31 +02:00
parent ebea792845
commit 48d01aea92
3 changed files with 3 additions and 3 deletions

View file

@ -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]

View file

@ -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]

View file

@ -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()})