1
0
mirror of synced 2025-01-18 22:24:04 +01:00

Fix incorrectly handling placed sprites if there was a change previously in the frame.

This commit is contained in:
Jennifer Taylor 2021-05-15 04:22:17 +00:00
parent 7ead384215
commit a58e1165bf

View File

@ -642,11 +642,11 @@ class AFPRenderer(VerboseOutput):
# If we create a new movie clip, process it as well for this frame.
if new_clip:
changed = changed or self.__process_tags(new_clip, prefix=prefix + " ")
changed = self.__process_tags(new_clip, prefix=prefix + " ") or changed
# Now, handle each of the existing clips.
for child in child_clips:
changed = changed or self.__process_tags(child, prefix=prefix + " ")
changed = self.__process_tags(child, prefix=prefix + " ") or changed
# Now, advance the frame for this clip.
clip.advance()