Source metadata
- Type: Official Unity documentation
- Maintainer: Unity Technologies
- Accessed: 2026-04-24
- Primary URLs:
Key takeaways
- Unity’s current manual states that FBX is Unity’s primary supported model format. Native files from tools such as Blender can be imported when the relevant software is installed, but Unity converts them through that software’s FBX export plugin.
- The Model tab exposes scene-level, mesh and geometry settings. For beginner 3D work, the most important checks are scale, unit conversion, axis conversion, mesh readability, colliders, normals, tangents and lightmap UVs.
- Unity’s physics scale assumption is explicit: 1 metre in the game world is expected to match 1 unit in the imported file.
Generate Colliderscan quickly create mesh colliders for environment geometry, but Unity warns that this should be avoided for geometry that moves.- The Materials tab controls how imported materials and textures are generated, embedded, extracted or remapped. Imported model materials should be treated as a starting point, not a final look.
- Unity searches for textures near the imported model first, especially in a
Texturesfolder beside or above the mesh, before falling back to a wider project search.
Notable claims
- Unity recommends direct FBX export into the
Assetsfolder in most cases, because importing native DCC files depends on the modelling software being installed on the same machine. - Unity’s Model Importer can preserve or bake axis conversion, which matters when a source tool uses a different up-axis convention.
- Imported normals and tangents are part of lighting correctness. Normal maps and seams should be checked after import, not assumed correct.
Relevance
This source informs:
- unity-3d-import-pipeline
- 3d-materials-and-uvs
- overview-beginner-3d-game-development-route
- unity-prefabs
- unity-lod-groups
- unity-urp-lighting-and-render-features
Open questions raised
- Which import defaults should be standardised for GDnD student projects?
- Should the public wiki include a downloadable import-test checklist for students using Blender, Maya or asset-store models?
- How much Model Importer detail belongs in a beginner page before it becomes a specialist optimisation topic?