I am trying to write a sketchup exporter. That will take a model that is currently inside sketchup and export it to a custom format.
I know that the sketchup sdk comes with some example projects such as skp2xml. How do I use this example file? It creates a dll file. How do I access this code within sketchup? Do I need to load it with ruby? If so how?
The deprecated documentation states:
A SketchUp plugin exporter is a piece of code that is dynamically loaded at runtime when a user indicates that they wish to export the model, view, section slice or image.
On the Windows platform an exporter is implemented by creating a COM DLL which contains a class that implements IEnumSketchUpExporter interface. See the SkpToXML Exporter example in the Examples folder for the details on how to do this.
The example is a visual studio project which I can compile into a dll. What do I do with the dll though? Do I need to place it in a special location?