Merge pull request #175 from aardschok/PLN-174

Remove OUT from pointcache instance
This commit is contained in:
Wijnand Koreman 2018-10-03 12:22:04 +02:00 committed by GitHub
commit 2aebfadeb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

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

View file

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