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:
authorJanne Karhu <jhkarh@gmail.com>2010-03-22 20:12:08 +0300
committerJanne Karhu <jhkarh@gmail.com>2010-03-22 20:12:08 +0300
commit867cad85b7af1059b79b5ad70b046c3f68f17b69 (patch)
treeb89f9250b2ea4d8f6c878f9674395dcb0478fe2c /source/blender/makesdna
parent113ea4368e8f0b8036c59354837afe5d68e0111a (diff)
Fix for [#21103] Updating bugs in Particle Mode
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index bd5c2e1c325..ed0640690a5 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -534,9 +534,10 @@ typedef struct ImagePaintSettings {
} ImagePaintSettings;
typedef struct ParticleBrushData {
- short size, strength; /* common settings */
- short step, invert; /* for specific brushes only */
- int flag, pad;
+ short size; /* common setting */
+ short step, invert, count; /* for specific brushes only */
+ int flag;
+ float strength;
} ParticleBrushData;
typedef struct ParticleEditSettings {