@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.
32 lines (31 loc) • 643 B
TypeScript
/**
* Defines the kind of contextual sources for node particles
*/
export declare enum NodeParticleContextualSources {
/** None */
None = 0,
/** Position */
Position = 1,
/** Direction */
Direction = 2,
/** Age */
Age = 3,
/** Lifetime */
Lifetime = 4,
/** Color */
Color = 5,
/** ScaledDirection */
ScaledDirection = 6,
/** Scale */
Scale = 7,
/** AgeGradient */
AgeGradient = 8,
/** Angle */
Angle = 9,
/** SpriteCellIndex */
SpriteCellIndex = 16,
/** SpriteCellStart */
SpriteCellStart = 17,
/** SpriteCellEnd */
SpriteCellEnd = 18
}