IDK/tiled_map/automap.sh

13 lines
181 B
Bash
Raw Permalink Normal View History

2022-01-29 00:08:33 +01:00
#!/bin/bash
2022-01-29 10:54:42 +01:00
mkdir map_python
2022-01-29 00:08:33 +01:00
for i in $(ls -X *.tmx)
do
2022-01-29 10:54:42 +01:00
echo "$i -> ${i%%.*}.py"
2022-01-29 00:08:33 +01:00
python converter "$i" doors=^ entities=?*
2022-01-29 10:54:42 +01:00
cp "${i%%.*}.py" map_python/
rm "${i%%.*}.py"
2022-01-29 00:08:33 +01:00
done
2022-01-29 10:54:42 +01:00