ParticleSystem.MinMaxCurveConstructor

Cambiar al Manual
public ParticleSystem.MinMaxCurve (float constant);

Parámetros

constantConstant value.

Descripción

A single constant value for the entire curve.


public ParticleSystem.MinMaxCurve (float multiplier, AnimationCurve curve);

Parámetros

scalarA multiplier to apply to the curve.
curveA single curve to evaluate against.

Descripción

Use one curve when evaluating numbers along this Min-Max curve.


public ParticleSystem.MinMaxCurve (float multiplier, AnimationCurve min, AnimationCurve max);

Parámetros

scalarA multiplier to apply to the curves.
minThe curve describing the minimum values to be evaluated.
maxThe curve describing the maximum values to be evaluated.

Descripción

Randomly select values based on the interval between the minimum and maximum curves.


public ParticleSystem.MinMaxCurve (float min, float max);

Parámetros

minThe constant describing the minimum values to be evaluated.
maxThe constant describing the maximum values to be evaluated.

Descripción

Randomly select values based on the interval between the minimum and maximum constants.