2019-11-28 05:21:59 +00:00
|
|
|
cd mods/ctf/ctf_map/ctf_map_core/maps/
|
2019-07-07 08:24:50 +00:00
|
|
|
|
2019-11-28 05:21:59 +00:00
|
|
|
# Copy textures from map sub-dirs to ctf_map_core/textures
|
2019-07-07 08:24:50 +00:00
|
|
|
for f in *; do
|
|
|
|
if [ -d ${f} ]; then
|
|
|
|
# Screenshot
|
2019-12-08 01:07:25 +00:00
|
|
|
if [ -f ${f}/screenshot.png ]; then
|
|
|
|
cp ${f}/screenshot.png ../textures/${f}.png
|
|
|
|
fi
|
2019-07-07 08:24:50 +00:00
|
|
|
|
|
|
|
# Skybox textures
|
2019-12-08 01:07:25 +00:00
|
|
|
if [ -f ${f}/skybox_1.png ]; then
|
|
|
|
cp ${f}/skybox_1.png ../textures/${f}_skybox_1.png
|
|
|
|
cp ${f}/skybox_2.png ../textures/${f}_skybox_2.png
|
|
|
|
cp ${f}/skybox_3.png ../textures/${f}_skybox_3.png
|
|
|
|
cp ${f}/skybox_4.png ../textures/${f}_skybox_4.png
|
|
|
|
cp ${f}/skybox_5.png ../textures/${f}_skybox_5.png
|
|
|
|
cp ${f}/skybox_6.png ../textures/${f}_skybox_6.png
|
|
|
|
fi
|
2019-07-07 08:24:50 +00:00
|
|
|
fi
|
|
|
|
done
|