Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

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

Sumbission failed

For some reason your suggested change could not be submitted. Please try again 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(constant: float)
public ParticleSystem.MinMaxCurve(float constant);

Parameters

constant Constant value.

Description

A single constant value for the entire curve.


public ParticleSystem.MinMaxCurve(scalar: float, curve: AnimationCurve)
public ParticleSystem.MinMaxCurve(float scalar, AnimationCurve curve);

Parameters

scalar A multiplier to be applied to the curve.
curve A single curve for evaluating against.

Description

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


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

Parameters

scalar A multiplier to be applied to the curves.
min The curve describing the minimum values to be evaluated.
max The 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(min: float, max: float)
public ParticleSystem.MinMaxCurve(float min, float max);

Parameters

min The constant describing the minimum values to be evaluated.
max The constant describing the maximum values to be evaluated.

Description

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