UnityEditor.CurveEditorWindow.DoUpdateCurve C# (CSharp) 메소드

DoUpdateCurve() 개인적인 메소드

private DoUpdateCurve ( bool exitGUI ) : void
exitGUI bool
리턴 void
        private void DoUpdateCurve(bool exitGUI)
        {
            if (((this.m_CurveEditor.animationCurves.Length > 0) && (this.m_CurveEditor.animationCurves[0] != null)) && this.m_CurveEditor.animationCurves[0].changed)
            {
                this.m_CurveEditor.animationCurves[0].changed = false;
                this.RefreshShownCurves();
                this.SendEvent("CurveChanged", exitGUI);
            }
        }