@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) • 327 B
TypeScript
/**
* Enum used to define system values e.g. values automatically provided by the system
*/
export declare enum NodeParticleSystemSources {
/** None */
None = 0,
/** Time */
Time = 1,
/** Delta time */
Delta = 2,
/** Emitter */
Emitter = 3,
/** Camera position */
CameraPosition = 4
}