mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
7 lines
278 B
Bash
7 lines
278 B
Bash
|
#!/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
|