To convert the game engine’s FTEX texture file format to the standard DDS file format (so they can be manipulated in image editors/etc) there are two tools you can use: FtexTool or File Monolith’s Mass Texture Converter.
While for converting DDS back to FTEX only FtexTool supports this.
FtexTool is a standalone command-line program that accepts either a single file or a single directory as input.
.ftex
file onto the FtexTool.exe
program icon.If successful you’ll see a new .dds
file created beside it.
.dds
file onto the FtexTool.exe
program icon.You should see a new .ftex
and sibling .ftexs
file(s) created beside it.
.ftex
and their related .ftexs
files onto the FtexTool.exe
program icon.If successful you’ll see new .dds
files created within.
Other notes
FtexTool is recursive and will convert all FTEX found in every sub-directory of the input directory.
Also FtexTool doesn’t support DDS to FTEX conversion for whole directories. It only supports FTEX to DDS conversion when inputting directories.
For the sake of representing general use cases drag-and-dropping has been used in the steps but obviously being command-line based the program also supports CLI usage (see the tool’s Github readme).
Tip: if any of the above doesn’t produce the expected output check the troubleshooting section below.
Expand for more
.ftex
file onto the program and it doesn’t output a .dds
file check that you have all the associated .ftexs
(note the s
at the end) files.
.ftex
and not one of the .ftexs
files onto the program.Mass Texture Converter is one of the included programs of the File Monolith suite that allows converting a directory of FTEX files to DDS files as a one-way conversion.
It has a GUI, a setting to toggle recursive directory parsing and allows choosing a directory to output the converted DDS files to.
However it only supports converting an entire directory of FTEX to DDS and doesn’t support converting DDS back to FTEX.
Mass Texture Converter.exe
from the File Monolith program directory....
button and choose the directory that contains the FTEX (and related FTEXS) files....
button and choose where you want to output the convered DDS files to.Typically you’ll see Mass Texture Converter suggested for converting all the game’s unpacked texture files to DDS, following use of File Monolith’s other tool, Archive Unpacker (with its Condensed Directory Structure option checked). However it can also be used like the above steps for smaller batch conversions.