From 98f8613e297708ce50ea3b4c433f237f635322a1 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 20 Jul 2016 14:22:22 -0400 Subject: [PATCH] Fix LayerAnimation export WTF typo... "Animated stencils are nonsense" and then we promptly export ONLY animated stencils. I pity the foo! --- korman/exporter/material.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/exporter/material.py b/korman/exporter/material.py index 6247cbd..5c5b98d 100644 --- a/korman/exporter/material.py +++ b/korman/exporter/material.py @@ -252,7 +252,7 @@ class MaterialConverter: # Export any layer animations # NOTE: animated stencils are nonsense. - if slot.use_stencil: + if not slot.use_stencil: layer = self._export_layer_animations(bo, bm, slot, idx, layer) return layer