From a5900585f44390b2c79ee0724420cdf76531e0a7 Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Thu, 15 Apr 2021 21:19:19 +0200 Subject: [PATCH] Fix up direction for rhino importer. --- source/external/rhino.importer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/external/rhino.importer.js b/source/external/rhino.importer.js index 3165de1..985f468 100644 --- a/source/external/rhino.importer.js +++ b/source/external/rhino.importer.js @@ -28,7 +28,7 @@ OV.Importer3dm = class extends OV.ImporterBase GetUpDirection () { - return OV.Direction.X; + return OV.Direction.Z; } ImportContent (fileContent, onFinish)