1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-31 07:29:49 +00:00

Import images as palettes for all supported image file extensions

This commit is contained in:
OverloadedOrama 2020-06-17 17:15:51 +03:00
parent 25d9aca0c4
commit 2dc94a4896

View file

@ -50,7 +50,7 @@ func on_palette_import_file_selected(path : String) -> void:
palette = Palette.new().load_from_file(path)
elif path.to_lower().ends_with("gpl"):
palette = Import.import_gpl(path)
elif path.to_lower().ends_with("png"):
elif path.to_lower().ends_with("png") or path.to_lower().ends_with("bmp") or path.to_lower().ends_with("hdr") or path.to_lower().ends_with("jpg") or path.to_lower().ends_with("svg") or path.to_lower().ends_with("tga") or path.to_lower().ends_with("webp"):
palette = Import.import_png_palette(path)
if palette: