ColorRamp(bpy_struct)¶
base class — bpy_struct
- class bpy.types.ColorRamp(bpy_struct)¶
Color ramp mapping a scalar value to a color
- color_mode¶
Set color mode to use for interpolation
- Type:
enum in [
'RGB','HSV','HSL'], default'RGB'
- elements¶
- Type:
ColorRampElementsbpy_prop_collectionofColorRampElement, (readonly)
- hue_interpolation¶
Set color interpolation
- Type:
enum in [
'NEAR','FAR','CW','CCW'], default'NEAR'
- interpolation¶
Set interpolation between color stops
- Type:
enum in [
'EASE','CARDINAL','LINEAR','B_SPLINE','CONSTANT'], default'LINEAR'
- evaluate(position)¶
Evaluate Color Ramp
- Parameters:
position (float in [0, 1]) – Position, Evaluate Color Ramp at position
- Returns:
Color, Color at given position
- Return type:
float array of 4 items in [-inf, inf]
- classmethod bl_rna_get_subclass(id, default=None, /)¶
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Structsubclass
- classmethod bl_rna_get_subclass_py(id, default=None, /)¶
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type