Added ability to import images as palettes

This commit is contained in:
OverloadedOrama 2020-06-17 03:56:46 +03:00
parent 063ea04b4c
commit f7cc9a8104
3 changed files with 4 additions and 1 deletions

View file

@ -19,6 +19,7 @@ func _ready() -> void:
func handle_loading_files(files : PoolStringArray) -> void:
for file in files:
file = file.replace("\\", "/")
if file.get_extension().to_lower() == "pxo":
open_pxo_file(file)
else: