From 24ee8635fc2deaf220e193ecc1482abb90fefb12 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Tue, 10 Aug 2021 20:05:05 +0200 Subject: [PATCH] Fix rhino library location. --- source/export/exporter3dm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/export/exporter3dm.js b/source/export/exporter3dm.js index ada4aca..81d7049 100644 --- a/source/export/exporter3dm.js +++ b/source/export/exporter3dm.js @@ -14,7 +14,7 @@ OV.Exporter3dm = class extends OV.ExporterBase ExportContent (model, format, files, onFinish) { if (this.rhino === null) { - OV.LoadExternalLibrary ('rhino3dm.min.js').then (() => { + OV.LoadExternalLibrary ('loaders/rhino3dm.min.js').then (() => { rhino3dm ().then ((rhino) => { this.rhino = rhino; this.ExportRhinoContent (model, files, onFinish);