Interface SerializationMetaType

interface SerializationMetaType {
    __isLoadedResources?: boolean;
    _context: {
        assetImporter?: AssetImporter;
        assetManager?: AssetManager;
        imagePromises?: Promise<any>[];
        materialManager?: MaterialManager<"">;
        objectLoader?: ObjectLoader;
        renderManager?: RenderManager<IRenderManagerEvent, IRenderManagerEventTypes>;
        [key: string]: any;
    };
    animations: Record<string, any>;
    extras: Record<string, any>;
    geometries: Record<string, any>;
    images: Record<string, any>;
    materials: Record<string, any>;
    object?: any;
    shapes: Record<string, any>;
    skeletons: Record<string, any>;
    textures: Record<string, any>;
}

Hierarchy (view full)

Properties

__isLoadedResources?: boolean
_context: {
    assetImporter?: AssetImporter;
    assetManager?: AssetManager;
    imagePromises?: Promise<any>[];
    materialManager?: MaterialManager<"">;
    objectLoader?: ObjectLoader;
    renderManager?: RenderManager<IRenderManagerEvent, IRenderManagerEventTypes>;
    [key: string]: any;
}

Type declaration

animations: Record<string, any>
extras: Record<string, any>
geometries: Record<string, any>
images: Record<string, any>
materials: Record<string, any>
object?: any
shapes: Record<string, any>
skeletons: Record<string, any>
textures: Record<string, any>

Generated using TypeDoc