Английская Википедия:GlTF

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

Шаблон:Short description Шаблон:Lowercase title Шаблон:Infobox file format glTF (Graphics Library Transmission Format or GL Transmission Format and formerly known as WebGL Transmissions Format or WebGL TF) is a standard file format for three-dimensional scenes and models. A glTF file uses one of two possible file extensions: .gltf (JSON/ASCII) or .glb (binary). Both .gltf and .glb files may reference external binary and texture resources. Alternatively, both formats may be self-contained by directly embedding binary data buffers (as base64-encoded strings in .gltf files or as raw byte arrays in .glb files).[1][2][3] An open standard developed and maintained by the Khronos Group, it supports 3D model geometry, appearance, scene graph hierarchy, and animation.[2] It is intended to be a streamlined, interoperable format for the delivery of 3D assets, while minimizing file size and runtime processing by apps.[2][4] As such, its creators have described it as the "JPEG of 3D."[2]

Overview

The glTF format stores data primarily in JSON. The JSON may also contain blobs of binary data known as buffers, and refer to external files, for storing mesh data, images, etc.[5] The binary .glb format also contains JSON text, but serialized with binary chunk headers to allow blobs to be directly appended to the file.

The fundamental building blocks of a glTF scene are nodes. Nodes are organized into a hierarchy, such that a node may have other nodes defined as children. Nodes may have transforms relative to their parent. Nodes may refer to resources, such as meshes, skins, and cameras. Meshes may refer to materials, which refer to textures, which refer to images. Scenes are defined using an array of root nodes.[6]

Most of the top-level glTF properties use a flat hierarchy for storage. Nodes are saved in an array called "nodes", and are referred to by index, including by other nodes. A glTF scene refers to its root nodes by index. Furthermore, nodes refer to meshes by index, which refer to materials by index, which refer to textures by index, which refer to images by index.[5]

All glTF data structures support being extended using an "extensions" JSON property. This allows adding arbitrary JSON data to any data structure, defined using an extension specification that is built upon the base glTF spec. See the Extensions section for more information.[7]

Releases

glTF 1.0

Members of the COLLADA working group conceived the file format in 2012.[8] At SIGGRAPH 2012, Khronos presented a demo of glTF, which was then called WebGL Transmissions Format (WebGL TF).[3] On October 19, 2015, Khronos released the glTF 1.0 specification.[3]

Adoption of glTF 1.0

At SIGGRAPH 2016, Oculus announced their adoption of glTF citing the similarities to their ovrscene format.[4][9] In October 2016, Microsoft joined the 3D Formats working group at Khronos to collaborate on glTF.[10]

glTF 2.0

The second version, glTF 2.0, was released in June 2017, and is a complete overhaul of the file format from version 1.0, with most tools adopting the 2.0 version.[2][3] Based on a proposal by Fraunhofer[11] originally presented at SIGGRAPH 2016, Physically based rendering (PBR) was added, replacing WebGL shaders used in glTF 1.0.[12] glTF 2.0 added the GLB binary format into the base specification. Other upgrades include sparse accessors and morph targets for techniques such as facial animation, and schema tweaks and breaking changes for corner cases or performance such as replacing top-level glTF object properties with arrays for faster index-based access.[13] There is ongoing work towards import and export in Unity[14] and an integrated multi-engine viewer / validator.[15]

Adoption of glTF 2.0

On March 3, 2017, Microsoft announced that they will be using glTF 2.0 as the 3D asset format across their product line, including Paint 3D, 3D Viewer, Remix 3D, Babylon.js, and Microsoft Office. Sketchfab also announced support for glTF 2.0. As of 2019, the glTF and GLB formats are used on and supported by companies including DGG, UX3D, Sketchfab, Facebook, Microsoft, Oculus, Google, Adobe, Box, TurboSquid, Unreal Engine[16] and Qt Quick 3D.[4][3][17][18] The format has been noted as an important standard for augmented reality, integrating with modeling software such as Autodesk Maya, Autodesk 3ds Max, and Poly.[19][20]

In February 2020, the Smithsonian Institution launched their Open Access Initiative, releasing approximately 2.8 million 2D images and 3D models into the public domain, using glTF for the 3D models.[21]

In July 2022, glTF 2.0 was released as the ISO/IEC 12113:2022 International Standard.[22] Khronos stated they will make regular submissions to bring updates and new widely adopted glTF functionality into refreshed versions of ISO/IEC 12113 to ensure that there is no long-term divergence between the ISO/IEC and Khronos specifications.[23]

With the release of V4.x of the open-source game engine Godot,[24] the gITF 2.0 format is fully supported. [25]

Extensions

The glTF format can be extended with arbitrary JSON to add new data and functionality. Extensions can be placed on any part of a glTF, including nodes, animations, materials, textures, and on the entire document. Khronos keeps a non-comprehensive registry of glTF extensions on GitHub, including all official Khronos extensions and a few third-party extensions.[7]

  • PBR extensions model the physical appearance of real-world objects, allowing developers to create realistic 3D assets that have the correct appearance. As new PBR extensions are released, they continue to expand PBR capabilities within the glTF framework, allowing a wider range of scenes and objects to be realistically rendered as 3D assets.[26]
  • The KTX 2.0 extension for universal texture compression enables 3D models in the glTF format to be highly compressed and to use natively supported texture formats, reducing file size and boosting rendering speed.[27]
  • Draco is a glTF extension for mesh compression, to compress and decompress 3D meshes, to help reduce the size of 3D files. It compresses vertex attributes, normals, colors, and texture coordinates.[28]
  • Various glTF extensions for game engine interoperability have been developed by OMI group. This includes extensions for physics shapes, physics bodies, physics joints, audio playback, seats, spawn points, and more.[29][30]
  • The VRM consortium has developed glTF extensions for advanced humanoid 3D avatars including dynamic spring bones and toon materials.[31][32]

Derivative formats

On August 10, 2015, 3D Tiles, now a proposed OGC Community Standard, built on glTF to add a spatial data structure, metadata, and declarative styling for streaming massive heterogeneous 3D geospatial datasets.[33][34][35]

VRM, a model format for VR, is built on the .glb format.[36] It is a 3D humanoid avatar specification and file format.[37]

Software ecosystem

Khronos maintains the glTF Sample Viewer for viewing glTF assets. Khronos also maintains the glTF Validator for validating if 3D models conform to the glTF specification.[38][39]

glTF loaders are in open-source WebGL engines including PlayCanvas, Three.js, Babylon.js, Cesium, PEX, xeogl, and A-Frame. The Godot game engine supports and recommends the glTF format, with both import and export support.[40][41]

Open-source glTF converters are available from COLLADA, FBX, and OBJ. Assimp can import and export glTF.

glTF files can also be directly exported from a variety of 3D editors, such as Blender, Vectary, Autodesk 3ds Max (natively or using Verge3D exporter[42]), Autodesk Maya (using babylon.js exporter[43]), Autodesk Inventor, Modo, Houdini,[44] Paint 3D, Godot, and Substance Painter.[45]

Open-source glTF utility libraries are available for programming languages including JavaScript, Node.js, C++, C#, Haskell, Java, Go, Rust, Haxe, Ada, and TypeScript.

3D Commerce, a working group of universal guidelines, standards and certifications for 3D content creation and distribution in e-commerce, incorporates glTF for transmission of photorealistic 3D assets.[46] In June 2021, the 3D Commerce viewer certification program was launched, enabling 3D viewers to demonstrate they can accurately and reliably display 3D products using the glTF file format.[47] 3D Commerce's asset guidelines, released in 2020, include best practices for use of the glTF file format in 3D Commerce.[48]

See also

References

Шаблон:Reflist

External links

Шаблон:Khronos Group standards Шаблон:Web interfaces