How do I create my own custom NodeCategory in C#?
//This Works
[NodeCategory(“Core.Color.Create”)]
//This does not appear
[NodeCategory(“Custom.Geometry.Point”)]
All the best,
-Miguel
How do I create my own custom NodeCategory in C#?
//This Works
[NodeCategory(“Core.Color.Create”)]
//This does not appear
[NodeCategory(“Custom.Geometry.Point”)]
All the best,
-Miguel
If you are trying to write a zero touch plugin in C#, then you can create a customization file with name $YourLibrary_DynamoCustomization.xml with the content something similar.
<?xml version="1.0"?> <doc> <assembly> <name>ProtoGeometry</name> </assembly> <namespaces> <namespace name="Autodesk.DesignScript.Geometry"> <category>Custom.Geometry.Point</category> </namespace> </namespaces> </doc>