File Format Variations
glTF Separate (.gltf
+ .bin
+ textures)
This produces a JSON text-based .gltf
file describing the overall structure, along with a .bin
file containing mesh and vector data, and optionally a number of .png
or .jpg
files containing image textures referenced by the .gltf
file.
glTF Binary (.glb
)
This produces a single .glb
file with all mesh data, image textures, and related information packed into a single binary file. Using a single file makes it easy to share or copy the model to other systems and services.
glTF Embedded (.gltf
) NOT SUPPORTED
This produces a JSON text-based
.gltf
file, with all mesh data and image data encoded within the file. This form is useful if the asset must be shared over a plain-text-only connection.
Warning: This is the least efficient of the available forms. Fectar does NOT support this format
