UnityEditor.CurvePresetLibrary.DrawInternal C# (CSharp) 메소드

DrawInternal() 개인적인 메소드

private DrawInternal ( Rect rect, AnimationCurve animCurve ) : void
rect UnityEngine.Rect
animCurve UnityEngine.AnimationCurve
리턴 void
        private void DrawInternal(Rect rect, AnimationCurve animCurve)
        {
            if (animCurve != null)
            {
                EditorGUIUtility.DrawCurveSwatch(rect, animCurve, null, new Color(0.8f, 0.8f, 0.8f, 1f), EditorGUI.kCurveBGColor);
            }
        }