glTF markers

The GL Transmission Format (.glTF file) is an industry-standard interchange format for the transport of 3D models. Binary GL Transmission Format (.glb) files are binary versions of a glTF file that also include embedded assets such as textures.

Learn more about the glTF specification

glTF markers can contain multiple levels of detail (LODs) to manage their display in an efficient and sensible way across a range of view distances. This scalability means that when the marker is in the distance in a scene, it draws with less complexity than when it is drawn in the foreground, nearer to the viewer.

glTF markers can include material properties such as shininess, roughness, or metalness. This gives models a distinctive sense of realism that can't be achieved with only flat color.

Supported features from the glTF specification

The following list outlines the currently supported features from the glTF specification:

  • Full-node hierarchies, including node transformations and mesh instancing.
  • The MSFT_lod glTF extension is supported, but only node-based LODs, not material-based LODs. MSFT_lod can only appear in the first node of a scene. If it appears elsewhere, all occurrences of MSFT_lod are ignored.
  • Primitive geometry types: TRIANGLE, TRIANGLE_STRIP, and TRIANGLE_FAN.
  • All vertex attributes and methods of specifying attributes using buffers, bufferViews, and accessors, except as otherwise noted.
  • GLB (binary glTF).
  • Metallic-Roughness materials.
  • Normal maps.
  • Occlusion maps.
  • Vertex colors.
  • Specular Glossiness defined by the KHR_Materials_pbrSpecularGlossiness extension.

Unsupported features from the glTF specification

The following list outlines the features that are not currently supported from the glTF specification:

  • The glTF document scene must be set to a specific scene, or there must be exactly one scene in the glTF document.
  • Draco compression.
  • All glTF extensions except MSFT_lod and KHR_Materials_pbrSpecularGlossiness, as noted above.
  • Morph targets.
  • Skins.
  • Emissive maps.
  • Primitive geometry types: POINTS, LINES, LINE_LOOP, and LINE_STRIP.
  • Cameras.
  • Multiple UV sets.
  • Sparse accessors.

Related topics