BimCT SDK / WebGL2 Viewer
    Preparing search index...

    Interface BimEngineCoreInitializationOptions

    Initialization options of emscripten renderer binary. At most one of the wasmBinary and wasmBinaryUrl must be provided. If none is provided then the binary is initialized using the default emscripten mechanism

    interface BimEngineCoreInitializationOptions {
        language?: Language | "auto";
        wasmBinary?: Uint8Array;
        wasmBinaryUrl?: string;
        wasmProfiler?: boolean;
        languageOverrides?: Resource;
    }
    Index

    Properties

    language?: Language | "auto"
    wasmBinary?: Uint8Array

    If provided the the user must ensure that the binary is loaded before using his own means

    wasmBinaryUrl?: string

    If provided the the initalizeBimEngineCore will try to load the binary from the specified url

    wasmProfiler?: boolean

    If provided profiler connects to port 5000

    languageOverrides?: Resource

    You can use this to add new languages or override existing ones. example: languageOverrides: { "en": { "translation": { "toolbar": { main: { item: { navigation: "Nav" } } } } } }