From 7072f234d3f8c90fb1402847ba132b3574a2c823 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Sat, 30 Mar 2013 16:42:59 +0000 Subject: Updated default line style parameters. - Line color set to black. - Line thickness set to 3. Based on review comments by IRIE Shinsuke. --- source/blender/blenkernel/intern/linestyle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenkernel/intern/linestyle.c') diff --git a/source/blender/blenkernel/intern/linestyle.c b/source/blender/blenkernel/intern/linestyle.c index fe27ddcfafe..6a8061274f8 100644 --- a/source/blender/blenkernel/intern/linestyle.c +++ b/source/blender/blenkernel/intern/linestyle.c @@ -76,9 +76,9 @@ static const char *modifier_name[LS_MODIFIER_NUM] = { static void default_linestyle_settings(FreestyleLineStyle *linestyle) { linestyle->panel = LS_PANEL_STROKES; - linestyle->r = linestyle->g = linestyle->b = 1.0f; + linestyle->r = linestyle->g = linestyle->b = 0.0f; linestyle->alpha = 1.0f; - linestyle->thickness = 1.0f; + linestyle->thickness = 3.0f; linestyle->thickness_position = LS_THICKNESS_CENTER; linestyle->thickness_ratio = 0.5f; linestyle->chaining = LS_CHAINING_PLAIN; -- cgit v1.2.3