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>2020-11-13 12:20:20 +0300
committerYimingWu <xp8110@outlook.com>2020-11-13 12:20:20 +0300
commit2e53b646f6f02ab112e0823b9577ff2e1920faae (patch)
treefa20e7c58fa2e824717609c20069dc38df30c2a3 /source/blender/makesdna/DNA_gpencil_modifier_types.h
parent503505728141e2fe343e7d8791f8aee87accfdbc (diff)
GPencil: Remove "angle_split" from Multiply modifier.
Diffstat (limited to 'source/blender/makesdna/DNA_gpencil_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_gpencil_modifier_types.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_modifier_types.h b/source/blender/makesdna/DNA_gpencil_modifier_types.h
index 7107e131eda..f84265eea1d 100644
--- a/source/blender/makesdna/DNA_gpencil_modifier_types.h
+++ b/source/blender/makesdna/DNA_gpencil_modifier_types.h
@@ -685,7 +685,6 @@ typedef struct MultiplyGpencilModifierData {
int flag;
/** Custom index for passes. */
int layer_pass;
- char _pad[4];
int flags;
@@ -698,14 +697,10 @@ typedef struct MultiplyGpencilModifierData {
float fading_thickness;
float fading_opacity;
- /* in rad not deg */
- float split_angle;
-
- /* char _pad[4]; */
} MultiplyGpencilModifierData;
typedef enum eMultiplyGpencil_Flag {
- GP_MULTIPLY_ENABLE_ANGLE_SPLITTING = (1 << 1),
+ /* GP_MULTIPLY_ENABLE_ANGLE_SPLITTING = (1 << 1), Deprecated. */
GP_MULTIPLY_ENABLE_FADING = (1 << 2),
} eMultiplyGpencil_Flag;