@inweb/viewer-visualize
    Preparing search index...

    Interface DatabaseChunkEvent

    Event that fires when the model scene description file has been loaded.

    interface DatabaseChunkEvent {
        buffer?: ArrayBuffer | Uint8Array<ArrayBufferLike>;
        data?: Uint8Array;
        model?: Model;
        type: "databasechunk";
    }
    Index

    Properties

    buffer?: ArrayBuffer | Uint8Array<ArrayBufferLike>

    Buffer to open.

    data?: Uint8Array

    Scene description file.

    model?: Model

    Model instance to open.

    type: "databasechunk"

    Event type.