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.

16 lines (15 loc) 357 B
/** * Enum used to define the material modes */ export declare enum NodeMaterialModes { /** Regular material */ Material = 0, /** For post process */ PostProcess = 1, /** For particle system */ Particle = 2, /** For procedural texture */ ProceduralTexture = 3, /** For gaussian splatting */ GaussianSplatting = 4 }