public ParticleSystem.MinMaxCurve(float constant);
Parameters
| constant | Constant value. |
Description 描述
A single constant value for the entire 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.
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(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.