aboutsummaryrefslogtreecommitdiff
path: root/misc/scripts/make_icons.sh
diff options
context:
space:
mode:
authorRémi Verschelde2017-02-09 00:07:44 +0100
committerRémi Verschelde2017-02-09 00:08:27 +0100
commitb87a232668d9f9f3b32c2fceb60bc5f6ef46df22 (patch)
tree40bf3a8b94fbca24f9bf144e4ac9eee7f3c011d0 /misc/scripts/make_icons.sh
parentb19c9bd1983b8c72621595b7c22daade4ebf6625 (diff)
downloadgodot-b87a232668d9f9f3b32c2fceb60bc5f6ef46df22.tar.gz
godot-b87a232668d9f9f3b32c2fceb60bc5f6ef46df22.tar.zst
godot-b87a232668d9f9f3b32c2fceb60bc5f6ef46df22.zip
Reorder the folders in tools to prepare moving tools/editor
- `certs` and `editor_fonts` go to `thirdparty` - `dist` and `scripts` go to a new `misc` folder - `collada` and `doc` go to `tools/editor` The next step will be to rename `tools/editor` to `editor` directly, but this will be done at the right time to avoid breaking too many PRs.
Diffstat (limited to 'misc/scripts/make_icons.sh')
-rw-r--r--misc/scripts/make_icons.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/misc/scripts/make_icons.sh b/misc/scripts/make_icons.sh
new file mode 100644
index 000000000..71037cd1c
--- /dev/null
+++ b/misc/scripts/make_icons.sh
@@ -0,0 +1,5 @@
+convert -resize 32x32 ../../icon.svg icon32.ico
+convert -resize 32x32 ../../icon.svg icon32.icns
+for s in 16 24 32 64 96 128 256; do convert -resize ${s}x$s ../../icon.svg icon$s.png; done
+zip icons.zip icon*.png
+rm icon*.png