mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
4658b1cfb6
* APNG loader: Import addon to take over APNG handling * APNG loader: Transition code to using the AImgIO addon * APNG loader: Can now open APNGs. * AImgIO: Update to fix bugs * APNG loader: HTML5 * APNG loader: gdformat/gdlint addon * APNG loader: OpenSave formatting fix * APNG Loader: Add ignore line to OpenSave because it's too big * Fix GIFAnimationExporter bug caused by the switch to the addon
15 lines
227 B
GDScript
15 lines
227 B
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
var apng_importer
|
|
|
|
|
|
func _enter_tree():
|
|
apng_importer = AImgIOAPNGImportPlugin.new()
|
|
add_import_plugin(apng_importer)
|
|
|
|
|
|
func _exit_tree():
|
|
remove_import_plugin(apng_importer)
|
|
apng_importer = null
|