@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) • 388 B
TypeScript
import type { Nullable } from "../types.js";
import type { MeshUVSpaceRenderer } from "./meshUVSpaceRenderer.js";
declare module "./abstractMesh.js" {
interface AbstractMesh {
/** @internal */
_decalMap: Nullable<MeshUVSpaceRenderer>;
/**
* Gets or sets the decal map for this mesh
*/
decalMap: Nullable<MeshUVSpaceRenderer>;
}
}