Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorGUIUtility.DrawCurveSwatch

static function DrawCurveSwatch(position: Rect, curve: AnimationCurve, property: SerializedProperty, color: Color, bgColor: Color): void;
static void DrawCurveSwatch(Rect position, AnimationCurve curve, SerializedProperty property, Color color, Color bgColor);
static def DrawCurveSwatch(position as Rect, curve as AnimationCurve, property as SerializedProperty, color as Color, bgColor as Color) as void
static function DrawCurveSwatch(position: Rect, curve: AnimationCurve, property: SerializedProperty, color: Color, bgColor: Color, curveRanges: Rect): void;
static void DrawCurveSwatch(Rect position, AnimationCurve curve, SerializedProperty property, Color color, Color bgColor, Rect curveRanges);
static def DrawCurveSwatch(position as Rect, curve as AnimationCurve, property as SerializedProperty, color as Color, bgColor as Color, curveRanges as Rect) as void

Parameters

positionThe rectangle to draw the color swatch within.
curveThe curve to draw.
propertyThe curve to draw as a SerializedProperty.
colorThe color to draw the curve with.
bgColorThe color to draw the background with.
curveRangesOptional parameter to specify the range of the curve which should be included in swatch.

Description

Draw a curve swatch.

Pass in the curve to draw either with the curve parameter or with the property parameter.