Benjamin Yde

BenjaminYdeVintecc

About Me

- Studied Game Development @ DAE (Kortrijk , Belgium). Focus on Programming - Currently working at Vintecc (see www.vintecc.com) ---- Past 3 years (simulation engineer for digital twins) ---- Last 1 year (synthetic data engineer + devops + tooling)
EXPERTISE
Developer
INDUSTRY
Gamedev

Connect

LOCATION
Roeselare, Belgium
WEBSITE

Houdini Skills

ADVANCED
Procedural Modeling  | Python
INTERMEDIATE
Digital Assets  | VEX
BEGINNER
Solaris  | Karma

Availability

I am currently employed at Vintecc

Recent Forum Posts

When will the EPC videos be posted online? June 3, 2024, 2:26 a.m.

Greetings,
EPC (Everything Procedural Conference) was between 15-19 April 2024 and a only the GROT video has been pushed online.
When will the rest of the videos of the workshop be available?
As noted on the following url here [www.sidefx.com]
"Workshops and Conference presentations will be recorded and posted after the event."
Regards
Benjamin

Bug? - Storm - Object Outline Selection Does Not Render Oct. 25, 2023, 6:20 a.m.

Is it normal that when using solaris storm renderer and I select an object in the viewport that the yellow outline does not render?
The object selection outline renders using HoudiniGL, Karma CPU and Karma XPU

Python - Use Python Editable Packages=auto reload on change Oct. 10, 2023, 3:56 p.m.

Greetings,

I know this is an old one but,
I am developing python packages to use in Houdini for my nodes.
But when I update my scripts, the python modules do not reload automatically.
How can i make sure to install an editable python package without the need to restart houdini?

I tried the following things:

- in 456.py:
import importlib
importlib.reload(module_name)
- hython -m pip install -e
- in 456.py:
import site
site.addsitedir(package_folder)
-in 456.py: use os.path and append the package_folder
- setting PYTHONDEVMODE=1
- Modify PYTHONPATH
...

I do not want to reload manually... This is very frustrating for development.
Is there a way to do this?