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:
authorJoshua Leung <aligorith@gmail.com>2016-03-27 17:20:15 +0300
committerJoshua Leung <aligorith@gmail.com>2016-03-27 17:21:31 +0300
commit2bb956f6c90cf9f1055e46b1334e50d76f5f91dd (patch)
treec4be26965a7e164026a9417c6548b21d2cef9168 /source/blender/makesdna/DNA_gpencil_types.h
parentfd8f51da0854eb280689adc690b61051f7bdac51 (diff)
GPencil: Smooth and Subdivision variable/setting naming
On second thought, these might be better names for these... I'm still not 100% happy with these, but they will do for now. (Best results currently seem to be with smooth 0.7, and subdivision steps 1 or 2)
Diffstat (limited to 'source/blender/makesdna/DNA_gpencil_types.h')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index 0ef213235b6..e5e193d479b 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -131,8 +131,8 @@ typedef struct bGPDlayer {
char info[128]; /* optional reference info about this layer (i.e. "director's comments, 12/3")
* this is used for the name of the layer too and kept unique. */
- float smooth_drawfac; /* factor used for dynamic smooth of strokes */
- short sublevel; /* subdivision level */
+ float draw_smoothfac; /* amount of smoothing to apply to newly created strokes */
+ short sublevel; /* number of times to subdivide new strokes */
short pad[5]; /* padding for compiler error */
} bGPDlayer;