Tomas Slancik

tamte

About Me

INDUSTRY
Advertising / Motion Graphics

Connect

LOCATION
New York, United States
WEBSITE

Houdini Skills

Availability

I am currently employed at Method Studios

Recent Forum Posts

Procedurally generate a sine wave in a chramp? Feb. 24, 2026, 2:44 a.m.

If you want to procedurally define key positions and values use spline() [www.sidefx.com] or ramp_lookup() [www.sidefx.com] function

You can likely also just multiply sin() and -exp() functions for similar shape without having to sample any ramp

Python callback to run every time any HDA parameter change Feb. 18, 2026, 10:54 p.m.

You can probably register node event callback [www.sidefx.com] for each HDA instance to handle hou.nodeEventType.ParmTupleChanged

You likely want to add it during HDA's OnLoaded callback as the node event callbacks don't persist between sessions

vdpfrompolygons node. How can I getback the objects details Feb. 8, 2026, 9:49 a.m.

likely because you don't have UVs on the remeshed geo since displacement map relies on that

you may have some luck with Labs UV Transfer to transfer vertex uv attribute from original geo to remeshed geo

or alternatively you can create new UVs and bake the new displacement map