mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
15 lines
227 B
GDScript3
15 lines
227 B
GDScript3
|
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
|