Version: 2020.2
언어: 한국어

ParticleSystem.MinMaxCurveConstructor

매뉴얼로 전환
public ParticleSystem.MinMaxCurve (float constant);

파라미터

constant Constant value.

설명

A single constant value for the entire curve.


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

파라미터

scalar A multiplier to apply to the curve.
curve A single curve to evaluate against.

설명

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


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

파라미터

scalar A multiplier to apply to the curves.
min The curve describing the minimum values to be evaluated.
max The curve describing the maximum values to be evaluated.

설명

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


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

파라미터

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

설명

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