Matija Kos

MatijaK

About Me

Connect

LOCATION
Paris, France

Houdini Skills

Availability

I am available for Freelance Work

Recent Forum Posts

Copernicus Painter – Layer-Based Painting in Houdini Jan. 23, 2026, 12:54 a.m.

cushwa
I am very interested if you get this up and running.. I would like to beta test. Don't let this fall by the wayside.
Thank you . I won't, I just need to find time to advance.

Apex Abstract Control : how to customize Jan. 10, 2026, 1:04 p.m.

Well for anyone else who could struggle with this here is the solution.
graph.addConfigControl(
    controlgroup=control,
    parent=primary,
    name='segments',
    controltype='__intlistmenu__',
    value_type='Int',
    defaultvaluedict={'value': 0},
    menu_entries=['0', '1', '2', '3'],

    instance=1,
)


There is still something I don't understand. I would assume that if I add :
menu_labels=['Football','Basketball','Tennis','Volleyball'],
I will see the labels in the view-port but I'm seeing the entries. If I use the sports strings as menu_entries I can see them in the view-port but than the integers I'm getting are always 0.

Apex Abstract Control : how to customize Jan. 10, 2026, 5:19 a.m.

I'm not sure if I'm doing something wrong or if it is even possible to do right now but when I try to do a controller that will switch between 0-3 by setting the slider min and max I still get 13 outputs(0-12)
# Add the first control in the control group
graph.addConfigControl(
    controlgroup=control,
    parent=primary,
    name='slider',
    controltype='__numbermenu__',
    promoted_name='slider_x',
    instance=instance,
    value_type='Int',
    slider_min=0,
    slider_max=3,
    animatable=False,
    color=(1,0,1),
)