GLOSSARY
GLB File
GLB is the binary container of glTF 2.0 — a Khronos Group standard for 3D scenes that bundles geometry, textures, materials, and animation in one file.
Definition
glTF ("GL Transmission Format") was designed to be the JPEG of 3D — small, well-defined, fast to load. The text form (.gltf) ships geometry as JSON with separate binary buffers; the binary form (.glb) packs everything into one file.
GLB describes meshes with PBR (physically-based rendering) materials, base color and normal textures, skinning, and animation. Three.js, Babylon.js, model-viewer, Sketchfab, and most AR frameworks treat it as the default delivery format.
Why it matters
AI 3D tools that target digital content (Hunyuan3D, Trellis, Meshy, Sloyd) typically output GLB because the textures and materials they generate are part of the value. If your end goal is a web preview or a VR scene, GLB is what you want.
For 3D printing, GLB is overkill. You strip the textures, convert to STL, and discard the materials. Automatic3D's pipeline does this conversion as part of the print-ready output.
Common confusion
Slicers do not load GLB. You either export STL from the source tool or convert in Blender first. The geometry inside a GLB is often not watertight by default — content tools optimize for visual quality, not printability.