view scripts/tileset-composer.sh @ 123:592477d8b09b

Add fps to game
author Neil Muller <drnlmuller@gmail.com>
date Mon, 04 Apr 2011 23:07:37 +0200
parents a770ac0c3385
children 75938c6ac3d0
line wrap: on
line source

#!/bin/bash

for background in "fan_gold" "fan_green" "red" "blue" "flower_dark" "flower_light"
do
    mkdir -p $background
    for piece in "floor" "wall" "wall-end-"{"t","b",""}{"l","r"} "floor-"{"start","end"}"-"{"l","r"} "arch-"{"l","r"} "decor-1"
    do
        xcf2png $1 "$piece" "$background" --mode Screen > $background/"$piece.png"
    done
done