mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 22:02:15 +01:00
Use $HIP/pyblsih as output directory
This commit is contained in:
parent
ebea792845
commit
48d01aea92
3 changed files with 3 additions and 3 deletions
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -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()})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue