Editor API Reference - v1.1.4
    Preparing search index...

    Type Alias WasmAssetData

    Represents the data for a Wasm asset.

    type WasmAssetData = {
        fallbackScriptId?: number;
        glueScriptId?: number;
        moduleName: string;
    }
    Index

    Properties

    fallbackScriptId?: number

    The asset id of the fallback script asset to be used if wasm modules are not supported.

    glueScriptId?: number

    The asset id of the script asset with the JavaScript glue code that implements the JavaScript interface to the wasm functions.

    moduleName: string

    The name of the module library defined in the wasm module.