Blog · Explainer
What Are YDR and YTYP Files in FiveM?
YDR and YTYP files are core GTA V formats every FiveM mapper works with. If you use EasyFiveM to create FiveM-ready props, both file types are included automatically in your export — you don't need to build them manually in CodeWalker.
Understanding these formats helps you troubleshoot invisible props, missing collision, and broken resources on your server.
What is an AI FiveM prop maker?
An AI FiveM prop maker like EasyFiveM generates YDR and YTYP automatically when you export. You focus on the creative work — photos, models, textures — and the FiveM YDR generator handles the native file conversion.
Why general AI 3D tools are not enough for FiveM
GLB, OBJ and FBX are universal 3D formats. FiveM streams YDR and YTYP. Without conversion, AI-generated meshes cannot appear on your server — regardless of how good the 3D looks in a preview window.
What is a YDR file?
A YDR (drawable) contains 3D geometry: vertices, materials, LOD levels and shader references. Custom chairs, signs and decorations on FiveM servers are streamed from .ydr files in the resource's stream/ folder.
What is a YTD file?
A YTD (texture dictionary) stores compressed textures referenced by the YDR. Most custom-textured props include a separate YTD alongside the drawable.
What is a YTYP file?
A YTYP (archetype definition) tells GTA V how to treat your object: bounding box, physics flags, LOD distance and the link between drawable name and archetype. Without YTYP, your YDR may not spawn correctly.
How they work together
my-prop/
├── fxmanifest.lua
├── my_prop.ytyp
└── stream/
├── my_prop.ydr
└── my_prop.ytd
FiveM reads the manifest, loads YTYP archetypes, and streams YDR/YTD when players approach the prop.
How EasyFiveM creates FiveM-ready props
When you export from Prop Maker, EasyFiveM converts GLB/OBJ/FBX into native binaries and writes matching YTYP entries. You get a complete FiveM resource ZIP — not raw meshes.
Can EasyFiveM export YDR and YTYP files?
Yes. Every export includes both. EasyFiveM acts as a FiveM YTYP generator and FiveM YDR generator in one step — no CodeWalker required for standard props.
YDR/YTYP vs GLB/OBJ
| Format | Used by | FiveM compatible? |
|---|---|---|
| GLB, OBJ, FBX | Blender, Unity, AI tools | No — must convert |
| YDR + YTYP | GTA V / FiveM | Yes — native |
EasyFiveM vs Meshy vs Tripo vs Blender/Sollumz
Meshy and Tripo output GLB. Blender + Sollumz manually creates YDR/YTYP. EasyFiveM automates that conversion in the browser — the fastest path to native files for standard server props.
Export FiveM YDR and YTYP files online — no CodeWalker required.
Open Prop MakerFrequently asked questions
What is a YDR file in FiveM?
YDR is GTA V's drawable format — the 3D mesh and shaders for a prop streamed by the server.
What is a YTYP file in FiveM?
YTYP defines archetypes — names, bounds and placement data so FiveM knows how to spawn and collide with the prop.
Does EasyFiveM export YDR files?
Yes. Every export includes a .ydr drawable in stream/.
Does EasyFiveM export YTYP files?
Yes. A matching .ytyp is generated and referenced in fxmanifest.lua.
Can I create FiveM props without Blender?
Yes. EasyFiveM generates YDR and YTYP without Blender or Sollumz.