> For the complete documentation index, see [llms.txt](https://wiki.redmodding.org/cyberpunk-2077-modding/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.redmodding.org/cyberpunk-2077-modding/for-mod-creators-theory/modding-tools/redmod/importing-raw-files-to-redengine.md).

# Importing Raw Files to REDengine

```

redmod resource-import -depot=<depot> -input=<relative path to file to be imported> -output=<absolute path to the new redengine file>
```

Redmod can be used to import a large variety of files into REDengine formats for use in your mods.

<table><thead><tr><th>Red Engine Format</th><th>Raw Format</th><th data-hidden></th></tr></thead><tbody><tr><td>.fnt (font)</td><td><p>.ttf: TrueType font</p><p>.otf: OpenType font</p><p>.cff: Compact Font Format</p></td><td></td></tr><tr><td>.regionset (Texture Region Set)</td><td>.json: Texture region set definition.</td><td></td></tr><tr><td>.mesh (Mesh)</td><td><p>.xml: Speed Tree XML Resource File .smd: Source Mesh Data</p><p>.fbx: Autodesk FBX</p></td><td></td></tr><tr><td>.curveset (Curve Set)</td><td>.csv Comma Separated Value Table</td><td></td></tr><tr><td>.mlsetup (MultiLayer Setup file)</td><td>.json: MultiLayer Setup JSON File .mlsetup: MultiLayer Setup File</td><td></td></tr><tr><td>.genericanimdb (Generic anim database)</td><td>.csv: csv file</td><td></td></tr><tr><td>.cubemap (Cubemap)</td><td><p>.dds: DirectDraw Surface</p><p>.bmp: Windows Bitmap</p><p>.jpg: Joint Photographics Experts Group .tga: Truevision Targa</p><p>.png: Portable Network Graphics</p><p>.exr: OpenEXR</p></td><td></td></tr><tr><td>.rig (Rig)</td><td>.re CDPR proprietary format</td><td></td></tr><tr><td>.ies (IES Light Profile Data Resource)</td><td>.ies: IES light profile</td><td></td></tr><tr><td>.mlmask (Multilayer Mask)</td><td><p>.tiff: Tagged Image File Format</p><p>.tif: Tagged Image File Format</p><p>.json: JSON</p></td><td></td></tr><tr><td>.rsvg (SvgResource)</td><td>.svg: SVG Resource definition file</td><td></td></tr><tr><td>.xbm (Bitmap Texture)</td><td><p>.dds: DirectDraw Surface</p><p>.bmp: Windows Bitmap</p><p>.jpg: Joint Photographics Experts Group .tga: Truevision Targa</p><p>.png: Portable Network Graphics</p><p>.tiff: Tagged Image File Format</p><p>.tif: Tagged Image File Format</p><p>.exr: EXR</p><p>.cube: Cube LUT</p></td><td></td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wiki.redmodding.org/cyberpunk-2077-modding/for-mod-creators-theory/modding-tools/redmod/importing-raw-files-to-redengine.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
