Hi,
I really like in GH Windows that Value List automatically fill the right menu when connected to some inputs, like End type
with Pipe component.
As far as I know, it’s not yet implemented on GH Mac : is it planned or should I stop waiting ?
Best,
Félix
I’m not sure if the native Value List component works as you explain neither on Windows nor on Mac. Anyway while ago I’ve made a littele component capable of doing what you’re looking for:
I’ve made a little component that automatically creates ValueList whenever it connects to an input with name-values:
namespace AutoValueList
{
public class AutoValueListComponent : GH_Component
{
private bool _handled = false;
private GH_Document _doc;
public AutoValueListComponent()
: base("AutoValueList", "AutoValueList",
"Connect to an input with named value options to create a ValueList",
"Params", "Input")
…
1 Like
Wow this looks great ! I’ll have a look, thanks
Working great, it even outputs a regular value list Thanks a lot !