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:
authorYimingWu <xp8110@outlook.com>2022-03-25 15:13:04 +0300
committerYimingWu <xp8110@outlook.com>2022-03-25 15:13:50 +0300
commit97f2210157dbd36bc0a44674c8470202fe808301 (patch)
tree75d0a16414d6539d1feca9ed52e92fb2cfbc5973 /source/blender/makesdna
parentd4e1458db3a0e0eaf80219dc8e6d10cb27620793 (diff)
GPencil: Cyclic flag for dot dash modifier
Cyclic option per segment, allows interesting "loop" visual effects. Reviewed by: Antonio Vazquez (antoniov) Differential Revision: https://developer.blender.org/D14439
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_gpencil_modifier_types.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_modifier_types.h b/source/blender/makesdna/DNA_gpencil_modifier_types.h
index 4f655e87a09..7568dc5ff9a 100644
--- a/source/blender/makesdna/DNA_gpencil_modifier_types.h
+++ b/source/blender/makesdna/DNA_gpencil_modifier_types.h
@@ -522,7 +522,7 @@ typedef struct DashGpencilModifierSegment {
float radius;
float opacity;
int mat_nr;
- int _pad;
+ int flag;
} DashGpencilModifierSegment;
typedef struct DashGpencilModifierData {
@@ -546,6 +546,14 @@ typedef struct DashGpencilModifierData {
} DashGpencilModifierData;
+typedef enum eDashGpencil_Flag {
+ GP_DASH_INVERT_LAYER = (1 << 0),
+ GP_DASH_INVERT_PASS = (1 << 1),
+ GP_DASH_INVERT_LAYERPASS = (1 << 2),
+ GP_DASH_INVERT_MATERIAL = (1 << 3),
+ GP_DASH_USE_CYCLIC = (1 << 7),
+} eDashGpencil_Flag;
+
typedef struct MirrorGpencilModifierData {
GpencilModifierData modifier;
struct Object *object;