ParticleSystemCurveEditor.RemoveCurve C# (CSharp) Method

RemoveCurve() public method

public RemoveCurve ( UnityEditor.SerializedProperty max ) : void
max UnityEditor.SerializedProperty
return void
    public void RemoveCurve(SerializedProperty max)
    {
        this.RemoveCurve(null, max);
    }

Same methods

ParticleSystemCurveEditor::RemoveCurve ( UnityEditor.SerializedProperty min, UnityEditor.SerializedProperty max ) : void

Usage Example

        public void RemoveCurveFromEditor()
        {
            ParticleSystemCurveEditor particleSystemCurveEditor = this.m_Module.GetParticleSystemCurveEditor();

            if (particleSystemCurveEditor.IsAdded(this.GetMinCurve(), this.maxCurve))
            {
                particleSystemCurveEditor.RemoveCurve(this.GetMinCurve(), this.maxCurve);
            }
        }
All Usage Examples Of ParticleSystemCurveEditor::RemoveCurve