Skip to content

Commit

Permalink
Renderables: enable PathTwistedArray
Browse files Browse the repository at this point in the history
  • Loading branch information
howetuft committed Sep 3, 2024
1 parent 99db1a4 commit 84c81de
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Render/renderables.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ def get_renderables(obj, name, upper_material, mesher, **kwargs):
)

# Array, PathArray
elif obj_is_partfeature and obj_type in ("Array", "PathArray"):
elif obj_is_partfeature and obj_type in (
"Array",
"PathArray",
"PathTwistedArray",
):
debug("Object", label, f"'{obj_type}' detected")
expand_array = getattr(obj, "ExpandArray", False)
renderables = (
Expand Down

0 comments on commit 84c81de

Please sign in to comment.