Hello
small bug in the nodebrowser:
When I write a node in C# where the namespace name is the same as a class name in that namespace, like so:
namespace MyCustomNodes
{
public static class MyCustomNodes
{
public static float MyCustomNode(float input, float input2)
{
return input + input2;
}
}
}
and I then import this and go to the nodebrowser, it seems like I get as many subcategories called MyCustomNodes as I want: