mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
6 lines
278 B
Bash
Executable file
6 lines
278 B
Bash
Executable file
#!/bin/bash
|
|
inkscape animation.svg -o animation.png
|
|
convert animation.png -crop 8x8@ frame%d.png
|
|
for ((i=63;i>=0;i--)); do mv frame$i.png frame$((i + 1)).png; done
|
|
for ((i=9;i<=64;i++)); do rm frame$i.png; done
|
|
rcc --binary -o snapeffecttextures.smod.rcc snapeffecttextures.qrc
|