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:
authorTon Roosendaal <ton@blender.org>2009-01-10 20:20:34 +0300
committerTon Roosendaal <ton@blender.org>2009-01-10 20:20:34 +0300
commit619e5423fb591e2fb30fa3ea67c2ef520ca3d853 (patch)
tree979460ff3f46793a3bb8e465b291b92746af97e6 /source/blender/makesdna/DNA_scene_types.h
parent446933c73f859648c16d7a50344fdbee175f16a8 (diff)
2.5
Removed another bad global "editbutvweight", a value from buttons used to paint weights with, or to set weights. Is now part of weightpaint struct in scene.
Diffstat (limited to 'source/blender/makesdna/DNA_scene_types.h')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index ad280f46b26..db36772eb29 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -375,7 +375,8 @@ typedef struct TransformOrientation {
} TransformOrientation;
typedef struct VPaint {
- float r, g, b, a;
+ float r, g, b, a; /* paint color */
+ float weight; /* weight paint */
float size; /* of brush */
float gamma, mul;
short mode, flag;