Browse Source

Fix LayerAnimation export

WTF typo... "Animated stencils are nonsense" and then we promptly export
ONLY animated stencils. I pity the foo!
pull/43/head
Adam Johnson 8 years ago
parent
commit
98f8613e29
  1. 2
      korman/exporter/material.py

2
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

Loading…
Cancel
Save