diff options
Diffstat (limited to 'tools/CreateSetChunk/SetChunk.sc')
-rw-r--r-- | tools/CreateSetChunk/SetChunk.sc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/CreateSetChunk/SetChunk.sc b/tools/CreateSetChunk/SetChunk.sc new file mode 100644 index 0000000..d7b5092 --- /dev/null +++ b/tools/CreateSetChunk/SetChunk.sc @@ -0,0 +1,22 @@ +tool SetChunk : + description( "This tool turns a texture animation into a set chunk." ) +{ +} + +parameter OutputFile : + short( o ), + long( "output-file" ), + arg( name ), + description( "Specify output file." ), + type( string ) +{ +} + +parameter ShaderName : + short( s ), + long( "shader-name" ), + arg( name ), + description( "Specify the shader with texture animation whose textures will become set chunk." ), + type( string ) +{ +} |