Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

ParticleSystem.MinMaxCurve Constructor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

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 be applied to the curve.
curveA single curve for evaluating 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 be applied 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.

Did you find this page useful? Please give it a rating: