.unitypackage → textured GLB · runs in your browser, files never leave your device

Open a .unitypackage without Unity

No 5+ GB editor install just to peek inside. Drop the package and browse, preview and extract it in your browser.

Drop your .unitypackage here

or

Select a model or scene on the left — preview and GLB buttons appear above

Log


        

Reviewed against the current product on July 18, 2026 · Published by Unity Asset Exporter.

You were sent a .unitypackage and just want to look inside — but the only "official" way is to install Unity, a 5+ GB editor plus a hub, an account and a project just to peek at a file. You don't need any of that.

What a .unitypackage actually is

Despite the custom extension, a .unitypackage is nothing exotic: it's a gzip-compressed tar archive. Rename it to .tar.gz and a normal archiver will open it. Inside you'll find one folder per asset, each named after the asset's GUID (a 32-character hex id) rather than a filename. A typical GUID folder holds:

That GUID layout is why loose extraction is awkward — the real names and the links between models, materials and textures live in metadata, not in the folder structure.

Your options

Why browser-based wins for a quick look

For "what's in here and does the model look right?", nothing beats a page that unpacks the archive in memory and shows you the tree plus a live 3D preview in seconds. There's nothing to install, it works on any OS, and because the gzip/tar parsing and rendering all happen client-side, it's fast on large packages too.

Privacy: files never leave your device

This matters for paid Asset Store content and client work. The package is read with the browser's own FileReader and processed entirely in JavaScript on your machine. Nothing is uploaded — there's no server to send it to. Close the tab and it's gone.

Honest limits

Model support is FBX (7.0+) today. PNG, JPG, TGA, WebP, BMP and GIF plus common PSD, TIF/TIFF, DDS, HDR and EXR variants can be previewed in-browser; every original file remains available for raw extraction too.

FAQ

Do I need Unity to open a .unitypackage?
No. A .unitypackage is just a gzipped tar archive. This tool unpacks and reads it in the browser, so you don't need the multi-gigabyte Unity editor to see what's inside.
What is a .unitypackage file?
A gzip-compressed tar archive. Each asset lives in a folder named after its GUID, next to its meta file and original path — Unity's way of preserving references.
Are my files uploaded?
No. Everything runs client-side. Your package is read in memory in your browser and never sent to a server.
Can I get the models out too?
Yes. Besides raw file extraction, you can export FBX models as textured GLB with materials already bound.