summaryrefslogtreecommitdiff
path: root/game/gfx/square/.tools/mk.sh
blob: 31109139cf1e78a91b4a1e16c92b48902456feec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# This script applies a PNG mask to all files.
# Mask must be on the folder above.
dir=`pwd`

FILES=`ls|grep png`
for file in $FILES; do
    echo "AlphaMask $file"
    convert $file ../mask.png -alpha off -compose CopyOpacity -composite $file
done