@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.
30 lines (29 loc) • 682 B
TypeScript
/**
* Enum used to define system values e.g. values automatically provided by the system
*/
export declare enum NodeMaterialSystemValues {
/** World */
World = 1,
/** View */
View = 2,
/** Projection */
Projection = 3,
/** ViewProjection */
ViewProjection = 4,
/** WorldView */
WorldView = 5,
/** WorldViewProjection */
WorldViewProjection = 6,
/** CameraPosition */
CameraPosition = 7,
/** Fog Color */
FogColor = 8,
/** Delta time */
DeltaTime = 9,
/** Camera parameters */
CameraParameters = 10,
/** Material alpha */
MaterialAlpha = 11,
/** Projection */
ProjectionInverse = 12
}