glTF / GLB (3D)
Also known as: .gltf file, .glb file, GL Transmission Format, how to open glTF
glTF is an open, royalty-free 3D format from the Khronos Group, often called "the JPEG of 3D." It bundles geometry, materials, textures, and animation in a compact, runtime-ready form, and GLB is its single-file binary version used on the web and in AR.
- Open, royalty-free format from the Khronos Group
- GLB packs mesh, materials, and animation into one file
- The standard for web 3D and AR delivery
What glTF and GLB store
glTF (GL Transmission Format) is designed for efficient loading and display, not editing. It packs a full model — meshes, PBR materials, textures, skins, and animation — into a structure apps can render directly with little processing.
A .gltf file is JSON that can reference separate binary and image files, while a .glb wraps everything into one self-contained binary file. GLB is the usual choice for sharing because it keeps the model in a single download.
Where glTF is used
glTF is the standard for 3D on the web, in AR (it powers iOS Quick Look alongside USDZ), and in many game and product viewers. Browsers, Windows 3D Viewer, Blender, and online viewers all open it.
Because it is compact and royalty-free, glTF/GLB is the recommended export target when you want fast loading and broad support. Heavier authoring formats like FBX or OBJ are typically converted to glTF for delivery.