ParticleSystem.MinMaxCurveConstructor

Switch to Manual
public ParticleSystem.MinMaxCurve (float constant);

Parameters

constantConstant value.

Description

A single constant value for the entire curve.


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

Parameters

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

Description

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


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

Parameters

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.

Description

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


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

Parameters

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

Description

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