Fixed some leak issues with gdgifexporter

Made scrips extend Reference instead of Node
This commit is contained in:
OverloadedOrama 2020-08-19 01:01:00 +03:00
parent 14d958e55f
commit 1ff32f2892
9 changed files with 9 additions and 9 deletions

View file

@ -240,7 +240,7 @@ func export_gif(args: Dictionary) -> void:
Global.notification_label("File(s) exported")
func write_frame_to_gif(image: Image, wait_time: float, exporter: Node, export_dialog: Node) -> void:
func write_frame_to_gif(image: Image, wait_time: float, exporter: Reference, export_dialog: Node) -> void:
exporter.write_frame(image, wait_time, quantization)
increase_export_progress(export_dialog)