When is the Revit 2019 LumenRT plugin due for release?

We have been using LumenRT for a while now, but with Revit 2019 now being used more widely, when can we expect the plugin to be updated/released?

Regards Max

Parents Reply
  • OK, with a bit of reverse engineering, generating  a GUID, and guess work on the namespaces in the rv_LumenRT2019.dll using Visual Studio to sleuth them.., my son and I created a working manifest file. the following text can be added/pasted into a .addin file to create a working manifest:

    <?xml version="1.0" encoding="utf-8"?>
    <RevitAddIns>
       <AddIn Type="Application">
          <Name>Model Review</Name>
          <Assembly>C:\Program Files\Bentley\Bentley LumenRT CONNECT Edition - Update 13\LumenRT\Export\Revit\rv_LumenRT2019.dll</Assembly>
          <AddInId>d452173f-aad5-4062-8823-318474266d45</AddInId>
          <FullClassName>LumenRT.LumenRTApp</FullClassName>
          <VendorId>BSI</VendorId>
          <VendorDescription>Bentley Systems, Incorporated</VendorDescription>
       </AddIn>
    </RevitAddIns>

    I named my file LumenRTExport.addin and placed it in the following folder:

    C:\ProgramData\Autodesk\Revit\Addins\2019

Children