From 5a4479ffa7e39f48a8ab0d381da9317b42a18507 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 14 Aug 2021 07:47:09 -0400 Subject: [PATCH] Ensure parent objects generate CoordinateInterfaces. --- korman/exporter/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/exporter/convert.py b/korman/exporter/convert.py index bf126ff..6b4cdb1 100644 --- a/korman/exporter/convert.py +++ b/korman/exporter/convert.py @@ -346,7 +346,7 @@ class Exporter: def has_coordiface(self, bo): if bo.type in {"CAMERA", "EMPTY", "LAMP"}: return True - if bo.parent is not None: + if bo.parent is not None or bo.children: return True if bo.name in self.actors: return True