Rename Command

Hi All,

I’ve created a custom command with rhinocommon, and now I want to change the “english name” to something else. For example:
original command = "draw stuff"
new command = “draw cool stuff”

Cheers.

Just modify what is returned by your command’s EnglishName override. For example:

public override string EnglishName
{
  get { return "DrawCoolStuff"; }
}

Hi Dale,

When I change the English name and reload the plugin I get an error

Command did not register

  • UUID: 9C00A…
  • English Name: draw stuff
  • Local Name: draw stuff

Command names cannot contain spaces.

Thanks Dale, you rock!!