babylon-mmd
Version:
babylon.js mmd loader and runtime
20 lines (19 loc) • 695 B
TypeScript
import type { IMmdWasmInstanceType, MmdWasmType } from "../mmdWasmInstance";
/**
* Multithreaded debug build MmdWasmInstanceType with integrated bullet physics
*
* This wasm instance provides fast performance by performing worker-based multithreading with integrated bullet physics
*
* Requirements for use:
*
* - Browser that supports WebAssembly and SharedArrayBuffer
* - Serve page with https
* - Use following headers in your server:
* ```http
* Cross-Origin-Opener-Policy: same-origin
* Cross-Origin-Embedder-Policy: require-corp
* ```
*/
export declare class MmdWasmInstanceTypeMPD implements IMmdWasmInstanceType {
getWasmInstanceInner(): MmdWasmType;
}