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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-10-24 00:42:26 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-10-24 00:42:26 +0400
commit86e433728d8e45716537e1a6ac0719383bd10aa0 (patch)
treeed2f361408e5ab6d295a7d929b99c29f804859ff /source/blender/makesdna/DNA_linestyle_types.h
parent7a1f092cac4b40e06742af52577c7f7c36cb4a28 (diff)
Added support for dashed line in the Parameter Editor mode.
Diffstat (limited to 'source/blender/makesdna/DNA_linestyle_types.h')
-rw-r--r--source/blender/makesdna/DNA_linestyle_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_linestyle_types.h b/source/blender/makesdna/DNA_linestyle_types.h
index 3deef684e3d..88e44294ed4 100644
--- a/source/blender/makesdna/DNA_linestyle_types.h
+++ b/source/blender/makesdna/DNA_linestyle_types.h
@@ -181,6 +181,7 @@ typedef struct LineStyleThicknessModifier_DistanceFromObject {
/* FreestyleLineStyle::flag */
#define LS_DS_EXPAND 1 /* for animation editors */
#define LS_SAME_OBJECT 2
+#define LS_DASHED_LINE 4
/* FreestyleLineStyle::caps */
#define LS_CAPS_BUTT 1
@@ -194,7 +195,9 @@ typedef struct FreestyleLineStyle {
float r, g, b, alpha;
float thickness;
int flag, caps;
+ unsigned short dash1, gap1, dash2, gap2, dash3, gap3;
int panel; /* for UI */
+ int pad1;
ListBase color_modifiers;
ListBase alpha_modifiers;