Metadata about the glTF asset

interface IAsset {
    extensions?: Record<string, unknown>;
    extras?: Record<string, unknown>;
    name?: string;
    copyright?: string;
    generator?: string;
    version: string;
    minVersion?: string;
}

Hierarchy (view full)

Properties

extensions?: Record<string, unknown>

Dictionary object with extension-specific objects

extras?: Record<string, unknown>

Application-Specific data

name?: string

The user-defined name of this object

copyright?: string

A copyright message suitable for display to credit the content creator

generator?: string

Tool that generated this glTF model. Useful for debugging

version: string

The glTF version that this asset targets

minVersion?: string

The minimum glTF version that this asset targets