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-09-22 02:23:10 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-09-22 02:23:10 +0400
commitaf07527d35bafe0e3dad6cac9fdc81a435db0c77 (patch)
tree97d27e3a7defc41a79f8617efaf101ca114fc3a5 /source/blender/makesdna/DNA_linestyle_types.h
parent28d618e41b33fe1f351af4fa7100c84ed68a4b13 (diff)
Added support for line styles in the Graph Editor, DopeSheet
and NLA Editor.
Diffstat (limited to 'source/blender/makesdna/DNA_linestyle_types.h')
-rw-r--r--source/blender/makesdna/DNA_linestyle_types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_linestyle_types.h b/source/blender/makesdna/DNA_linestyle_types.h
index a19bbdf1bf9..a04cbb8c79d 100644
--- a/source/blender/makesdna/DNA_linestyle_types.h
+++ b/source/blender/makesdna/DNA_linestyle_types.h
@@ -178,13 +178,18 @@ typedef struct LineStyleThicknessModifier_DistanceFromObject {
#define LS_PANEL_DISTORT 5
#define LS_PANEL_MISC 6
+/* FreestyleLineStyle::flag */
+#define LS_DS_EXPAND 1 /* for animation editors */
+
typedef struct FreestyleLineStyle {
ID id;
struct AnimData *adt;
float r, g, b, alpha;
float thickness;
+ int flag;
int panel; /* for UI */
+ int pad1;
ListBase color_modifiers;
ListBase alpha_modifiers;