Alex Majewski
alexmajewski
About Me
専門知識
Developer
業界:
Advertising / Motion Graphics
Connect
LOCATION
Poznan,
Not Specified
ウェブサイト
Houdini Engine
Availability
Not Specified
Recent Forum Posts
Import a custom script into PythonModule in HDA? 2026年2月12日5:20
@chris_g I would have never discovered that on my own. Thank you very much, Chris! It works as expected.
Import a custom script into PythonModule in HDA? 2026年2月11日8:05
Here's what I'm trying to do:


I embedded a custom script in my HDA.
Is there a neat way to somehow execute/interact with logic from scripts adjacent to PythonModule? For example, I'd like to define a class in a separate script and then use it in PythonModule.
I embedded a custom script in my HDA.
Is there a neat way to somehow execute/interact with logic from scripts adjacent to PythonModule? For example, I'd like to define a class in a separate script and then use it in PythonModule.
Using opdef: SVG image embedded in HDA in a PySide6 dialog? 2026年1月16日7:15
@tamte I was able to do this:
And it seems to work! Many thanks
from PySide6.QtSvgWidgets import QSvgWidget from PySide6.QtCore import QByteArray icon_data = hou.readFile("opdef:/Driver/at_deadline?IconSVG") icon_widget = QSvgWidget() icon_widget.load(QByteArray(icon_data)) icon_widget.setFixedSize(32, 32)
And it seems to work! Many thanks