Show / Hide Table of Contents

Struct ParticleSystem.MinMaxCurve

Inherited Members
ValueType.Equals(Object)
ValueType.GetHashCode()
ValueType.ToString()
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetType()
Namespace: UnityEngine
Assembly: UnityEngine.dll
Syntax
[Serializable]
public struct MinMaxCurve

Constructors

| Improve this Doc View Source

MinMaxCurve(Single)

Declaration
public MinMaxCurve(float constant)
Parameters
Type Name Description
Single constant
| Improve this Doc View Source

MinMaxCurve(Single, Single)

Declaration
public MinMaxCurve(float min, float max)
Parameters
Type Name Description
Single min
Single max
| Improve this Doc View Source

MinMaxCurve(Single, AnimationCurve)

Declaration
public MinMaxCurve(float multiplier, AnimationCurve curve)
Parameters
Type Name Description
Single multiplier
AnimationCurve curve
| Improve this Doc View Source

MinMaxCurve(Single, AnimationCurve, AnimationCurve)

Declaration
public MinMaxCurve(float multiplier, AnimationCurve min, AnimationCurve max)
Parameters
Type Name Description
Single multiplier
AnimationCurve min
AnimationCurve max

Properties

| Improve this Doc View Source

constant

Declaration
public float constant { get; set; }
Property Value
Type Description
Single
| Improve this Doc View Source

constantMax

Declaration
public float constantMax { get; set; }
Property Value
Type Description
Single
| Improve this Doc View Source

constantMin

Declaration
public float constantMin { get; set; }
Property Value
Type Description
Single
| Improve this Doc View Source

curve

Declaration
public AnimationCurve curve { get; set; }
Property Value
Type Description
AnimationCurve
| Improve this Doc View Source

curveMax

Declaration
public AnimationCurve curveMax { get; set; }
Property Value
Type Description
AnimationCurve
| Improve this Doc View Source

curveMin

Declaration
public AnimationCurve curveMin { get; set; }
Property Value
Type Description
AnimationCurve
| Improve this Doc View Source

curveMultiplier

Declaration
public float curveMultiplier { get; set; }
Property Value
Type Description
Single
| Improve this Doc View Source

curveScalar

Declaration
[Obsolete("Please use MinMaxCurve.curveMultiplier instead. (UnityUpgradable) -> UnityEngine.ParticleSystem/MinMaxCurve.curveMultiplier", false)]
public float curveScalar { get; set; }
Property Value
Type Description
Single
| Improve this Doc View Source

mode

Declaration
public ParticleSystemCurveMode mode { get; set; }
Property Value
Type Description
ParticleSystemCurveMode

Methods

| Improve this Doc View Source

Evaluate(Single)

Declaration
public float Evaluate(float time)
Parameters
Type Name Description
Single time
Returns
Type Description
Single
| Improve this Doc View Source

Evaluate(Single, Single)

Declaration
public float Evaluate(float time, float lerpFactor)
Parameters
Type Name Description
Single time
Single lerpFactor
Returns
Type Description
Single

Operators

| Improve this Doc View Source

Implicit(Single to ParticleSystem.MinMaxCurve)

Declaration
public static implicit operator ParticleSystem.MinMaxCurve(float constant)
Parameters
Type Name Description
Single constant
Returns
Type Description
ParticleSystem.MinMaxCurve

Extension Methods

MustExtensions.MustBeEqual<T>(T, T)
MustExtensions.MustBeEqual<T>(T, T, String)
MustExtensions.MustNotBeEqual<T>(T, T)
MustExtensions.MustNotBeEqual<T>(T, T, String)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX