virtualx-engine/tools/steam/make_icons.sh
Ariel Manzur 9c939d389e ._sc_ file is now a ConfigFile for self contained mode
can contain a pre-loaded list of projects to be added to editor_settings.xml
2016-02-21 20:17:08 -03:00

7 lines
246 B
Bash

convert -resize 32x32 ../../godot_icon.svg icon32.ico
convert -resize 32x32 ../../godot_icon.svg icon32.icns
for s in 16 24 32 64 96 128 256; do convert -resize ${s}x$s ../../godot_icon.svg icon$s.png; done
zip icons.zip icon*.png
rm icon*.png