From 62d573ae01b5793453af9983ebebbe779e581539 Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Wed, 11 Sep 2024 17:01:03 +0300 Subject: [PATCH] Fix issue when exporting and the user has specific frames selected, then changes the layers and then changes the frames again --- src/Autoload/Export.gd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Autoload/Export.gd b/src/Autoload/Export.gd index e16788331..f20c95ab2 100644 --- a/src/Autoload/Export.gd +++ b/src/Autoload/Export.gd @@ -146,6 +146,9 @@ func external_export(project := Global.current_project) -> void: func process_data(project := Global.current_project) -> void: + var frames := _calculate_frames(project) + if frames.size() > blended_frames.size(): + cache_blended_frames(project) match current_tab: ExportTab.IMAGE: process_animation(project)