Skip to content

Instantly share code, notes, and snippets.

@dzava
Last active February 3, 2019 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dzava/d98f240cee05ab9912fc7aa5e63debcf to your computer and use it in GitHub Desktop.
Save dzava/d98f240cee05ab9912fc7aa5e63debcf to your computer and use it in GitHub Desktop.
Upgrade Ogre meshes for RigsOfRods
#!/usr/bin/env/ bash
rm -rf /tmp/upgrade
for archive in *.zip; do
unzip $archive -d /tmp/upgrade
for mesh in /tmp/upgrade/*.mesh; do
OgreMeshUpgrader $mesh
done
zip -j --update "$archive" /tmp/upgrade/*
rm -rf /tmp/upgrade
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment