Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_brush_types.h
| Show First 20 Lines • Show All 395 Lines • ▼ Show 20 Lines | |||||
| typedef enum eBrushGradientSourceFill { | typedef enum eBrushGradientSourceFill { | ||||
| BRUSH_GRADIENT_LINEAR = 0, /* gradient from pressure */ | BRUSH_GRADIENT_LINEAR = 0, /* gradient from pressure */ | ||||
| BRUSH_GRADIENT_RADIAL = 1, /* gradient from spacing */ | BRUSH_GRADIENT_RADIAL = 1, /* gradient from spacing */ | ||||
| } eBrushGradientSourceFill; | } eBrushGradientSourceFill; | ||||
| /* Brush.flag */ | /* Brush.flag */ | ||||
| typedef enum eBrushFlags { | typedef enum eBrushFlags { | ||||
| BRUSH_AIRBRUSH = (1 << 0), | BRUSH_AIRBRUSH = (1 << 0), | ||||
| BRUSH_FLAG_UNUSED_1 = (1 << 1), /* cleared */ | BRUSH_DYNAMIC_MESH_PREVIEW = (1 << 1), | ||||
| BRUSH_ALPHA_PRESSURE = (1 << 2), | BRUSH_ALPHA_PRESSURE = (1 << 2), | ||||
| BRUSH_SIZE_PRESSURE = (1 << 3), | BRUSH_SIZE_PRESSURE = (1 << 3), | ||||
| BRUSH_JITTER_PRESSURE = (1 << 4), | BRUSH_JITTER_PRESSURE = (1 << 4), | ||||
| BRUSH_SPACING_PRESSURE = (1 << 5), | BRUSH_SPACING_PRESSURE = (1 << 5), | ||||
| BRUSH_ORIGINAL_PLANE = (1 << 6), | BRUSH_ORIGINAL_PLANE = (1 << 6), | ||||
| BRUSH_GRAB_ACTIVE_VERTEX = (1 << 7), | BRUSH_GRAB_ACTIVE_VERTEX = (1 << 7), | ||||
| BRUSH_ANCHORED = (1 << 8), | BRUSH_ANCHORED = (1 << 8), | ||||
| BRUSH_DIR_IN = (1 << 9), | BRUSH_DIR_IN = (1 << 9), | ||||
| ▲ Show 20 Lines • Show All 178 Lines • Show Last 20 Lines | |||||