Mercurial > fife-parpg
view clients/utils/object_header.sh @ 182:bcc93e17f978
- added new plugin to FIFedit (Layertool)
FEATURES:
- layers now can be toogled visible / invisible
- tool also allows layer selection (better workflow IMO) - just click on the layer name
- demo screencapture can be found here: http://zero-projekt.net/files/screencaptures/1280x_zero_fifedit_layertool.ogg
Please let me know if this plugin causes any trouble for you.
author | chewie@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Wed, 11 Feb 2009 19:27:18 +0000 |
parents | 4a0efb7baf70 |
children |
line wrap: on
line source
#!/bin/bash # Adds an xml preprocessor directive to files named object.xml that indicates to fife that # these are object files. Call with the root directory to convert under as an argument such # as: # ./object_header my_client/objects for file in `find $1 -name object.xml`; do echo "<?fife type=\"object\"?>" | cat - $file >> tmp.xml mv tmp.xml $file done