# 3D File Formats

Unity supports a vast array of 3D file formats. You can find a full list of the formats supported in Unity here: <https://docs.unity3d.com/2020.1/Documentation/Manual/3D-formats.html>

### Using GLB / GLTF files

To import GLB / GLTF files into the Unity Editor.

1. Start by installing the SDK.
2. Once installed, create an `Editor` folder somewhere in your project.
3. Place these scripts inside the `Editor` folder.

{% file src="<https://2735528886-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FYDhReCuCDmCX2y8z9SOE%2Fuploads%2Fe1lkLgpMWS4LKeUofXvG%2FGLBImporter.cs?alt=media&token=dbe8e5ad-780e-4e6f-8c1b-c33fe8b5ffa0>" %}
Allows you to import GLB files.
{% endfile %}

{% file src="<https://2735528886-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FYDhReCuCDmCX2y8z9SOE%2Fuploads%2F7qdbMA7eD2DrYfIvUYO3%2FGLTFImporter.cs?alt=media&token=a1abf326-1ab6-4f60-8f10-0f3ff42e0cc7>" %}
Allows you to import GLTF files.
{% endfile %}

{% hint style="success" %}
After following the above steps you should now be able to import GLB / GLTF files directly within Unity.
{% endhint %}
