UNPKG

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