@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
13 lines (12 loc) • 462 B
TypeScript
import type { AbstractMesh } from "../../Meshes/abstractMesh.js";
/**
* Interface used to define a platform support for BoundingInfoHelper class
* @internal
*/
export interface IBoundingInfoHelperPlatform {
processAsync(mesh: AbstractMesh | AbstractMesh[]): Promise<void>;
registerMeshListAsync(mesh: AbstractMesh | AbstractMesh[]): Promise<void>;
processMeshList(): void;
fetchResultsForMeshListAsync(): Promise<void>;
dispose(): void;
}