Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_brush_types.h
| Show First 20 Lines • Show All 769 Lines • ▼ Show 20 Lines | typedef enum eBrushFlags2 { | ||||
| BRUSH_MULTIPLANE_SCRAPE_DYNAMIC = (1 << 0), | BRUSH_MULTIPLANE_SCRAPE_DYNAMIC = (1 << 0), | ||||
| BRUSH_MULTIPLANE_SCRAPE_PLANES_PREVIEW = (1 << 1), | BRUSH_MULTIPLANE_SCRAPE_PLANES_PREVIEW = (1 << 1), | ||||
| BRUSH_POSE_IK_ANCHORED = (1 << 2), | BRUSH_POSE_IK_ANCHORED = (1 << 2), | ||||
| BRUSH_USE_CONNECTED_ONLY = (1 << 3), | BRUSH_USE_CONNECTED_ONLY = (1 << 3), | ||||
| BRUSH_CLOTH_PIN_SIMULATION_BOUNDARY = (1 << 4), | BRUSH_CLOTH_PIN_SIMULATION_BOUNDARY = (1 << 4), | ||||
| BRUSH_POSE_USE_LOCK_ROTATION = (1 << 5), | BRUSH_POSE_USE_LOCK_ROTATION = (1 << 5), | ||||
| BRUSH_CLOTH_USE_COLLISION = (1 << 6), | BRUSH_CLOTH_USE_COLLISION = (1 << 6), | ||||
| BRUSH_AREA_RADIUS_PRESSURE = (1 << 7), | BRUSH_AREA_RADIUS_PRESSURE = (1 << 7), | ||||
| BRUSH_GRAB_SILHOUETTE = (1 << 8), | |||||
| } eBrushFlags2; | } eBrushFlags2; | ||||
| typedef enum { | typedef enum { | ||||
| BRUSH_MASK_PRESSURE_RAMP = (1 << 1), | BRUSH_MASK_PRESSURE_RAMP = (1 << 1), | ||||
| BRUSH_MASK_PRESSURE_CUTOFF = (1 << 2), | BRUSH_MASK_PRESSURE_CUTOFF = (1 << 2), | ||||
| } BrushMaskPressureFlags; | } BrushMaskPressureFlags; | ||||
| /* Brush.overlay_flags */ | /* Brush.overlay_flags */ | ||||
| ▲ Show 20 Lines • Show All 195 Lines • Show Last 20 Lines | |||||