Join our discord community

Please or Register to create posts and topics.

Houdini Engine Broken by prism(with solution )

Hello,

when Houdini engine is loaded by a dcc app using the HARS server, prism attempt to load the UI and basically break the server :

solution :

add the following line of code at the beginning of the statup() function of Prism_Houdini_Functions.py

if not hou.isUIAvailable():
return False

Great thanks, I added it directly in my dev version.

I haven't tested Prism with Houdini engine, but good to know that it works with that fix.