-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
layout tools for organizing scenegraphs (#149)
Co-authored-by: Scott Milner <[email protected]>
- Loading branch information
1 parent
7aaadb1
commit f8f0a7a
Showing
5 changed files
with
142 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+15 Bytes
(100%)
...line/software/houdini/hsite/houdini19.5/otls/lop_sdm223.dev.lnd_componentconfig.1.0.hdanc
Binary file not shown.
Binary file modified
BIN
+705 Bytes
(120%)
pipeline/software/houdini/hsite/houdini19.5/otls/lop_sdm223.lnd_nodelayouts.hdanc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
pipeline/software/houdini/hsite/houdini19.5/scripts/lop/instancer_OnCreated.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import hou | ||
|
||
try: | ||
me: hou.Node = kwargs["node"] # type: ignore[name-defined] # noqa: F821 | ||
primpath = me.parm("primpath") | ||
assert primpath is not None | ||
primpath.set(f"`@PATH`{primpath.evalAsString()}") | ||
except Exception: # in case this is created as a locked node | ||
pass |