mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 06:12:19 +01:00
Added comments about settings, force format on creation
This commit is contained in:
parent
455a7dbf60
commit
01bf824845
1 changed files with 4 additions and 5 deletions
|
|
@ -1,5 +1,3 @@
|
|||
from collections import OrderedDict
|
||||
|
||||
from avalon import houdini
|
||||
|
||||
|
||||
|
|
@ -22,9 +20,10 @@ class CreatePointCache(houdini.Creator):
|
|||
def process(self):
|
||||
instance = super(CreatePointCache, self).process()
|
||||
|
||||
parms = {"use_sop_path": True,
|
||||
"build_from_path": True,
|
||||
"path_attrib": "path",
|
||||
parms = {"use_sop_path": True, # Export single node from SOP Path
|
||||
"build_from_path": True, # Direct path of primitive in output
|
||||
"path_attrib": "path", # Pass path attribute for output
|
||||
"format": 2, # Set format to Ogawa
|
||||
"filename": "$HIP/pyblish/%s.abc" % self.name}
|
||||
|
||||
if self.nodes:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue