Aleksei Rusev

Stalkerx777

About Me

専門知識
Developer
INDUSTRY
Film/TV  | Gamedev

Connect

LOCATION
Vancouver, Canada
ウェブサイト

Houdini Skills

Availability

I am currently employed at Nvidia

Recent Forum Posts

Output files not being written to PDG_DIR or __PDG_DIR__ 2022年10月19日22:35

chrisgreb
You are right the docs are misleading

Yeah the docs should be updated! I spent a good chunk of time trying to debug why isn't $PDG_DIR working in ROP Geometry Output.

Is there a way to refresh Python Panels edited in an external editor? 2019年10月24日15:28

Just reload all your modules in the onCreateInterface and upon changes, you can hit the reload interface button on the python panel itself.

def onCreateInterface():
    import mymodule
    reload(mymodule)
    
    return mymodule.panel_widget()

Python comand line scripting import hou generates double free/corruption error 2019年1月27日13:14

Starting from version 17 Houdini doesn't use systems Python anymore. I'd imagine that trying to use Houdini's libraries from the external interpreter could lead to all sorts of issues. Unless you absolutely must using system's Python for some reason, stick to Hython instead.