Add my components to current components tabs(category) of grasshopper?

hi everyones
40

how did add my components to current components tabs (category) of grasshopper ?(visual studio) for example add to category ( interest or params or …) @Mahdiyar

c#

    public class OffsetComponent2 : GH_Component
    {
        public OffsetComponent2() : base("offset2", "offset2", "Description", "grasshopper", "params") { }

I’m not sure if that’s a good idea. Anyway this should work:

public YourCustomGhc() : base("name", "nickName", "description", "Intersect", "Pyhysical") { }
1 Like

Just use existing (sub)category names.

1 Like