Published August 15, 2026 · This workflow covers assets inside a .unitypackage, not an entire Unity project.
Godot cannot open Unity's .unitypackage archive directly. The practical bridge is GLB: this tool
resolves supported Unity asset references and creates a portable 3D file, while Godot documents glTF 2.0 as
its recommended 3D exchange format and supports binary .glb files.
How to convert Unitypackage assets for Godot
- Open the browser converter and choose a
.unitypackageyou have the right to use. - Select the supported model, prefab or scene you want to move.
- Preview the reconstructed result and click Download GLB.
- Copy the
.glbinto your Godot project folder. Godot imports supported 3D scene files when the editor detects them. - Open the imported scene, inspect materials and scale, and save or inherit the scene before adding Godot-specific behavior.
Why GLB is the bridge
A Unity package connects FBX models, .mat files and textures through internal GUIDs. Pulling out only
the FBX often loses those material links. The exporter resolves the supported references first and writes geometry,
PBR materials and textures into one GLB. Godot's documentation describes GLB as the smaller self-contained glTF option.
See Godot's official 3D format guide.
What this workflow can carry
- Supported FBX geometry from the package.
- Object hierarchy reconstructed from supported prefabs or scenes.
- Standard PBR base color, normal, metallic, roughness, emissive and occlusion data where available.
- Textures embedded in the GLB instead of a loose folder of unidentified images.
- Character skeletons in their saved static pose; original animation FBX files remain separately downloadable.
What it does not convert
This is not a Unity-project-to-Godot converter. It does not translate C# scripts to GDScript, MonoBehaviours to Godot nodes, Animator controllers, colliders, navigation, particles, custom shaders, post-processing or gameplay logic. Unity scenes are reconstructed only to the extent needed to export supported visible 3D content.
Verification status
The route is based on this exporter's documented GLB output and Godot's documented GLB importer. A version-specific end-to-end Godot fixture has not yet been published, so check scale, orientation, material channels, skeletons and scene hierarchy in your target Godot version before relying on the result in production.
Use assets you are allowed to move
File conversion does not change an asset's license. Only export and use package content when its license and your agreement with the creator permit use in the destination project.