Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 1,122 Lines • ▼ Show 20 Lines | |||||
| /* VPaint.flag */ | /* VPaint.flag */ | ||||
| enum { | enum { | ||||
| // VP_COLINDEX = (1 << 0), /* only paint onto active material*/ /* deprecated since before 2.49 */ | // VP_COLINDEX = (1 << 0), /* only paint onto active material*/ /* deprecated since before 2.49 */ | ||||
| // VP_AREA = (1 << 1), /* deprecated since 2.70 */ | // VP_AREA = (1 << 1), /* deprecated since 2.70 */ | ||||
| VP_NORMALS = (1 << 3), | VP_NORMALS = (1 << 3), | ||||
| VP_SPRAY = (1 << 4), | VP_SPRAY = (1 << 4), | ||||
| // VP_MIRROR_X = (1 << 5), /* deprecated in 2.5x use (me->editflag & ME_EDIT_MIRROR_X) */ | // VP_MIRROR_X = (1 << 5), /* deprecated in 2.5x use (me->editflag & ME_EDIT_MIRROR_X) */ | ||||
| VP_ONLYVGROUP = (1 << 7) /* weight paint only */ | VP_NO_OCCLUDE = (1 << 6), /* Paint through all geometry. */ | ||||
| VP_ONLYVGROUP = (1 << 7), /* weight paint only */ | |||||
| }; | }; | ||||
| /* ------------------------------------------- */ | /* ------------------------------------------- */ | ||||
| /* GPencil Stroke Sculpting */ | /* GPencil Stroke Sculpting */ | ||||
| /* Brush types */ | /* Brush types */ | ||||
| typedef enum eGP_EditBrush_Types { | typedef enum eGP_EditBrush_Types { | ||||
| GP_EDITBRUSH_TYPE_SMOOTH = 0, | GP_EDITBRUSH_TYPE_SMOOTH = 0, | ||||
| ▲ Show 20 Lines • Show All 1,161 Lines • Show Last 20 Lines | |||||