Apologies if this has been asked / answered elsewhere, but I couldn’t find a topic on this question if so.
We’d like to install a set of custom display modes for all of the users in our company. It looks like we could do this with a plugin that:
- Looks at a network directory for a collection of .ini files describing the custom display modes
- Generates a
List<DisplayModeDescription>
usingDisplayModeDescription.ImportFromFile
- Adds them to Rhino (if they don’t already exist) by
DisplayModeDescription.AddDisplayMode(DisplayModeDescription)
Is there a better way to do this?
Thanks!