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

Flip SOP add more particles without reseed Nov. 18, 2025, 12:43 p.m.

mzigaib
Here is an example comparing DOP and SOP workflow.
you forgot to uncheck Reseeding

as mentioned above [www.sidefx.com] if you want to oversample just sources, you can modify oversampling parameters , but then turn off Reseeding again so that only sources are seeded and not the sim

Multiparm Button script question Nov. 16, 2025, 5:23 p.m.

Multiparm button instance question Nov. 16, 2025, 5:22 p.m.

like any parm callback script, the info is in the kwargs dictionary
specifically
kwargs["script_multiparm_index"]

for example to print button parm name and index you can use this as callback script:
print( f"button name: { kwargs['parm'].name() }\nbutton index: { kwargs['script_multiparm_index'] }" )

or just:
print( kwargs )
to see what info you can work with