I’m looking to send some geometry through using Speckle in Dynamo.
For some reason, when clicking on the ‘Send objects to speckle’ button, nothing happens. I’ve tried with various types of data. I was wondering whether there’s something obvious I’m doing wrong.
Welcome back🌹! Can you make sure your Revit and Dynamo connector versions are aligned? It usually happens because of that. If they are, what version of Dynamo connector is installed?
Yes all connectors are up to date. I tried sending data to the same stream through Grasshopper, that worked perfectly fine. Also tried to reinstall the connectors for Revit, Civil and Dynamo.
The problem was that I was using Dyanmo within Civil3D and when I was updating the Dynamo connector through the Speckle Manager, it did not update the Dynamo for Civil3D one. Would it be possible to also install Speckle for Dynamo for Civil 3D. I now have to manually copy it everytime when I install/Update it.
Glad to hear it’s fixed! We’re not fully supporting Dynamo for Civil3D (unit conversions are not implemented), so we’re not including it in the installer yet.
Do you find it more useful than our Civil3D connector?
For others stumbling into similar issues:
One quick test to see if there’s an old dll polluting your environment is to create a Pyhton node with the following code:
import sys
import clr
clr.AddReference("System")
from System import AppDomain
assemblies = AppDomain.CurrentDomain.GetAssemblies()
speckleAssemblies = [a for a in assemblies if "Speckle" in a.FullName]
OUT = speckleAssemblies