diff options
Diffstat (limited to 'blobfoxdundundun.sh')
| -rwxr-xr-x | blobfoxdundundun.sh | 42 | 
1 files changed, 0 insertions, 42 deletions
| diff --git a/blobfoxdundundun.sh b/blobfoxdundundun.sh deleted file mode 100755 index f0c23e0..0000000 --- a/blobfoxdundundun.sh +++ /dev/null | |||
| @@ -1,42 +0,0 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | source ./shakeoffsets.sh | ||
| 4 | |||
| 5 | declare -a shakeOffsets | ||
| 6 | getShakeOffsets shakeOffsets | ||
| 7 | |||
| 8 | |||
| 9 | mkdir -p export_tmp | ||
| 10 | rm -f export_tmp/* | ||
| 11 | |||
| 12 | |||
| 13 | inkscape -z -e "export_tmp/1.png" "ablobfoxdundundun1.svg" | ||
| 14 | inkscape -z -e "export_tmp/2.png" "ablobfoxdundundun2.svg" | ||
| 15 | inkscape -z -e "export_tmp/3.png" "ablobfoxdundundun3.svg" | ||
| 16 | inkscape -z -e "export_tmp/4.png" "ablobfoxdundundun4.svg" | ||
| 17 | |||
| 18 | counter=5 | ||
| 19 | while [ $counter -le 79 ] | ||
| 20 | do | ||
| 21 | offset=${shakeOffsets[counter-5]} | ||
| 22 | file=`printf "export_tmp/%s.png" $counter` | ||
| 23 | inkscape -z -e $file -a $offset "ablobfoxdundundun4.svg" | ||
| 24 | ((counter++)) | ||
| 25 | done | ||
| 26 | |||
| 27 | |||
| 28 | declare -a args | ||
| 29 | args+=(export_tmp/1.png 50:50) | ||
| 30 | args+=(export_tmp/2.png 12:50) | ||
| 31 | args+=(export_tmp/3.png 12:50) | ||
| 32 | |||
| 33 | counter=4 | ||
| 34 | while [ $counter -le 79 ] | ||
| 35 | do | ||
| 36 | file=`printf "export_tmp/%s.png" $counter` | ||
| 37 | args+=($file 1:50) | ||
| 38 | ((counter++)) | ||
| 39 | done | ||
| 40 | |||
| 41 | apngasm -o export/ablobfoxdundundun.png ${args[@]} | ||
| 42 | rm -f export_tmp/* | ||
