Skip to content

Commit de2a1ec

Browse files
committed
2.6.4
1 parent 8821ef8 commit de2a1ec

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

interface.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2432,8 +2432,12 @@ def flipbook_to_image(flipbookimages, new_image_name="flipbook0.png"):
24322432
"""
24332433

24342434
images = []
2435+
seen = set()
24352436
for flipbookimg in flipbookimages:
2436-
images.append(flipbookimg.image)
2437+
img = flipbookimg.image
2438+
if img not in seen:
2439+
images.append(img)
2440+
seen.add(img)
24372441

24382442
# Ensure all images have same width and 4 channels (RGBA)
24392443
widths = [img.size[0] for img in images]

rigging_helpers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,6 @@ def execute(self, context):
634634

635635

636636
log.info('Folding' if do_folding else 'Unfolding')
637-
log.info('self.pose_name {} saved_pose.name {}',self.pose_name, saved_pose.name)
638637

639638
fold_unfold(scene, armature, do_folding, saved_pose=saved_pose, log=log)
640639

0 commit comments

Comments
 (0)