From 04df65cdfb0bfae891bd6c2a3b6f4e692a3f15d1 Mon Sep 17 00:00:00 2001 From: SiboVG Date: Wed, 23 Aug 2023 20:01:09 +0200 Subject: [PATCH] Move appearance enabling --- .../file/wavefrontobj/export/OBJExporterFactoryTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/test/net/sf/openrocket/file/wavefrontobj/export/OBJExporterFactoryTest.java b/core/test/net/sf/openrocket/file/wavefrontobj/export/OBJExporterFactoryTest.java index 2c550027c..f8dca2bb2 100644 --- a/core/test/net/sf/openrocket/file/wavefrontobj/export/OBJExporterFactoryTest.java +++ b/core/test/net/sf/openrocket/file/wavefrontobj/export/OBJExporterFactoryTest.java @@ -164,7 +164,6 @@ public class OBJExporterFactoryTest { OBJExportOptions options = new OBJExportOptions(rocket); options.setScaling(30); options.setExportChildren(true); - options.setExportAppearance(true); options.setRemoveOffset(true); OBJExporterFactory exporterFactory = new OBJExporterFactory(components, rocket.getSelectedConfiguration(), tempFile.toFile(), options); exporterFactory.doExport(); @@ -177,6 +176,7 @@ public class OBJExporterFactoryTest { options.setTriangulate(true); options.setRemoveOffset(false); + options.setExportAppearance(true); options.setScaling(1000); options.setLOD(ObjUtils.LevelOfDetail.LOW_QUALITY);