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:
authorCampbell Barton <ideasman42@gmail.com>2009-11-04 15:09:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-04 15:09:02 +0300
commit510aa6ba53e2808c02f078a525b91391c2ccce26 (patch)
treed9a976a6951c36fca19096329ee4a27d89522175 /source/blender/makesdna/DNA_particle_types.h
parent20c424730e968d21ab222852441e24eaf9dfd420 (diff)
particle vertex group UI
Changed RNA vgroup access to use strings (string functions adjust the ints used internally)
Diffstat (limited to 'source/blender/makesdna/DNA_particle_types.h')
-rw-r--r--source/blender/makesdna/DNA_particle_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h
index 157767e1d13..0de48c54fe2 100644
--- a/source/blender/makesdna/DNA_particle_types.h
+++ b/source/blender/makesdna/DNA_particle_types.h
@@ -231,7 +231,7 @@ typedef struct ParticleSystem{ /* note, make sure all (runtime) are NULL's in
char bb_uvname[3][32]; /* billboard uv name */
/* if you change these remember to update array lengths to PSYS_TOT_VG! */
- short vgroup[12], vg_neg, rt3; /* vertex groups */
+ short vgroup[12], vg_neg, rt3; /* vertex groups, 0==disable, 1==starting index */
/* temporary storage during render */
void *renderdata;