mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 06:12:19 +01:00
Merge pull request #175 from aardschok/PLN-174
Remove OUT from pointcache instance
This commit is contained in:
commit
2aebfadeb7
2 changed files with 3 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue