forked from MineClone5/MineClone5
Add tools/convert_all_tga_to_png.bash
This commit is contained in:
parent
54c06f3fe8
commit
a887708fb5
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
for name in ./*.tga
|
||||
do
|
||||
convert "$name" "${name%.*}".png
|
||||
|
||||
# Slow and useless:
|
||||
# optipng -o7 -zm1-9 "${name%.*}".png
|
||||
|
||||
done
|
Loading…
Reference in New Issue