I have a bunch of geometry nodes inputs exposed on a UI panel. I used the layout prop to do so
gm = object.modifiers.get("nodes")
col.prop(gm, '["Input_13"]', text="Min_Size")
col.prop(gm, '["Input_14"]', text="Max_Size")
col.prop(gm, '["Input_10"]', text="Offset")
I want to have the ability to set a min max values and also to put an update function for each property.
How can i do that?