Skip to main content

GLBWriter

The GLBWriter is a writer for the GLB binary "envelope" format.

Note: applications that want to encode GLB-formatted glTF files should normally use the GLTFWriter instead. The GLBWriter enables applications to save custom data that combines JSON and binary resources.

LoaderCharacteristic
File Extensions.glb
File TypeBinary
Data FormatSee below
File FormatGLB v2
Supported APIsencode, encodeSync

Usage​

import {GLBWriter} from '@loaders.gl/gltf';
import {encodeSync} from '@loaders.gl/core';

const arrayBuffer = encodeSync(gltf, GLBWriter, options);

Options​

OptionTypeDefaultDescription
N/AN/AN/AN/A

Data Format​

See GLBLoader.

Remarks​

  • While the GLBLoader supports reading both GLB v1 and v2, only GLB v2 can be written.