The forum is active for archival purposes only.

Join our discord community for new 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.