Combined 12 different rendering scripts into 1

This commit is contained in:
Stuart Hayhurst
2020-10-16 19:23:41 +01:00
parent 4aa0e8034a
commit 682e040635
31 changed files with 83 additions and 512 deletions

14
assets/render-all.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
COLORS=("color" "white")
TYPES=("icons" "select")
RESOLUTIONS=("1080p" "2k" "4k")
for COLOR in "${COLORS[@]}"; do
for TYPE in "${TYPES[@]}"; do
for RESOLUTION in "${RESOLUTIONS[@]}"; do
echo "./render-assets.sh \"$COLOR\" \"$TYPE\" \"$RESOLUTION\": "
./render-assets.sh "$COLOR" "$TYPE" "$RESOLUTION"
done
done
done