diff options
Diffstat (limited to 'game/build/tools/rename_anim.pl')
-rw-r--r-- | game/build/tools/rename_anim.pl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/game/build/tools/rename_anim.pl b/game/build/tools/rename_anim.pl new file mode 100644 index 0000000..fc3b802 --- /dev/null +++ b/game/build/tools/rename_anim.pl @@ -0,0 +1,17 @@ +opendir ( DIR, "." ) or die "Couldn't open directory, $!"; + +$ChunkName = $ARGV[0]; +$ChunkId = $ARGV[1]; + +while ( $file = readdir DIR ) +{ + if ( $file =~ m/(.*).p3d/ ) + { + $/ = ".p3d"; + chomp( $file ); + + `p3dmutate -m $ChunkName -i $ChunkId -f "Name" -a $file $file.p3d 1>&2` + } +} + +close DIR
\ No newline at end of file |