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