Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

ParticleSystem.MinMaxCurve.ParticleSystem.MinMaxCurve

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public ParticleSystem.MinMaxCurve(constant: float)
public ParticleSystem.MinMaxCurve(float constant);

Parámetros

constant Constant value.

Descripción

A single constant value for the entire curve.


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

Parámetros

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

Descripción

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);

Parámetros

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.

Descripción

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);

Parámetros

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

Descripción

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