Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 2,287 Lines • ▼ Show 20 Lines | typedef enum eGPencil_SimplifyFlags { | ||||
| /* Simplify modifier on viewport */ | /* Simplify modifier on viewport */ | ||||
| SIMPLIFY_GPENCIL_MODIFIER = (1 << 3), | SIMPLIFY_GPENCIL_MODIFIER = (1 << 3), | ||||
| /* Remove fill external line */ | /* Remove fill external line */ | ||||
| SIMPLIFY_GPENCIL_REMOVE_FILL_LINE = (1 << 4), | SIMPLIFY_GPENCIL_REMOVE_FILL_LINE = (1 << 4), | ||||
| /* Simplify Shader FX */ | /* Simplify Shader FX */ | ||||
| SIMPLIFY_GPENCIL_FX = (1 << 5), | SIMPLIFY_GPENCIL_FX = (1 << 5), | ||||
| /* Simplify layer blending */ | /* Simplify layer blending */ | ||||
| SIMPLIFY_GPENCIL_BLEND = (1 << 6), | SIMPLIFY_GPENCIL_BLEND = (1 << 6), | ||||
| /* Simplify layer tint */ | |||||
| SIMPLIFY_GPENCIL_TINT = (1 << 7), | |||||
| } eGPencil_SimplifyFlags; | } eGPencil_SimplifyFlags; | ||||
| /* ToolSettings.gpencil_*_align - Stroke Placement mode flags */ | /* ToolSettings.gpencil_*_align - Stroke Placement mode flags */ | ||||
| typedef enum eGPencil_Placement_Flags { | typedef enum eGPencil_Placement_Flags { | ||||
| /* New strokes are added in viewport/data space (i.e. not screen space) */ | /* New strokes are added in viewport/data space (i.e. not screen space) */ | ||||
| GP_PROJECT_VIEWSPACE = (1 << 0), | GP_PROJECT_VIEWSPACE = (1 << 0), | ||||
| /* Viewport space, but relative to render canvas (Sequencer Preview Only) */ | /* Viewport space, but relative to render canvas (Sequencer Preview Only) */ | ||||
| ▲ Show 20 Lines • Show All 126 Lines • Show Last 20 Lines | |||||