Joseph Leveson
steve_zeelo
About Me
Connect
LOCATION
Not Specified
ウェブサイト
Houdini Engine
Availability
Not Specified
Recent Forum Posts
Add onCreate to an HDA definition via python 2025年10月1日7:45
Hello.
Is it possible to add the OnCreate function and code to an HDAs definition via python please? I'm looked extensively and can't find the code that does it.
Thanks
Steve
Is it possible to add the OnCreate function and code to an HDAs definition via python please? I'm looked extensively and can't find the code that does it.
Thanks
Steve
Set IPRViewer Colorspace on Creation 2025年9月8日12:33
Hello,
I have the code to set the IPRViewer colorspace when Houdini starts:
However, if the artist creates a new one it reverts to the default and the default might change depending on the project.
Is there a callback or way to set this on creation?
Many thanks in advance.
I have the code to set the IPRViewer colorspace when Houdini starts:
panel = hou.ui.paneTabOfType(hou.paneTabType.IPRViewer) panel.setOCIODisplayView( display="ACES", view="Rec.709" )
However, if the artist creates a new one it reverts to the default and the default might change depending on the project.
Is there a callback or way to set this on creation?
Many thanks in advance.
Stage Context callbacks not work 2024年8月9日4:55
Solved it. It need to be "lop" instead of "stage"
└── scripts ├── 123.py ├── 456.py ├── __init__.py ├── obj │ ├── geo_OnCreated.py │ └── __init__.py ├── out │ ├── __init__.py │ └── merge_OnCreated.py └── lop ├── __init__.py └── merge_OnCreated.py