Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonioya <blendergit@gmail.com>2018-08-06 18:01:47 +0300
committerAntonioya <blendergit@gmail.com>2018-08-06 18:01:47 +0300
commit563e17091daf9d8df236dfe50c6522d0f0933571 (patch)
treeed74dc35bb436cea988fd2d7bcd554c2677ea94b /source/blender/makesdna/DNA_scene_types.h
parentd07a408a400e25e2e60131bf56065901d63e728c (diff)
GP: Add Simplify Shader FX option
This option was missing when old VFX modifers were backported as Shader FX.
Diffstat (limited to 'source/blender/makesdna/DNA_scene_types.h')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 6629eeae3fa..5a5614b775e 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -2067,7 +2067,9 @@ typedef enum eGPencil_SimplifyFlags {
/* Simplify modifier on viewport */
SIMPLIFY_GPENCIL_MODIFIER = (1 << 3),
/* Remove fill external line */
- SIMPLIFY_GPENCIL_REMOVE_FILL_LINE = (1 << 4)
+ SIMPLIFY_GPENCIL_REMOVE_FILL_LINE = (1 << 4),
+ /* Simplify Shader FX */
+ SIMPLIFY_GPENCIL_FX = (1 << 5)
} eGPencil_SimplifyFlags;
/* ToolSettings.gpencil_*_align - Stroke Placement mode flags */