Interface representing metadata used in Threejs object toJSON method.

interface MetaData {
    animations: { [key: string]: any };
    geometries: { [key: string]: any };
    images: { [key: string]: any };
    materials: { [key: string]: any };
    nodes: { [key: string]: any };
    shapes: { [key: string]: any };
    skeletons: { [key: string]: any };
    textures: { [key: string]: any };
}

Properties

animations: { [key: string]: any }
geometries: { [key: string]: any }
images: { [key: string]: any }
materials: { [key: string]: any }
nodes: { [key: string]: any }
shapes: { [key: string]: any }
skeletons: { [key: string]: any }
textures: { [key: string]: any }