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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-05 18:48:49 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-05 18:48:49 +0300
commitb3c1e458b43d4014bc720c7eb20af5e02f6f5ab5 (patch)
treeeea106767a5f83798af9cd4054f682799a4b6dd7 /source/blender/blenkernel/BKE_particle.h
parent29d87d64caac51fc900825063421a35ac9a7c7ae (diff)
Particles
========= - Added texture control for child particle roughness. - Fix some use of uninitialized variables in particle texture code.
Diffstat (limited to 'source/blender/blenkernel/BKE_particle.h')
-rw-r--r--source/blender/blenkernel/BKE_particle.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenkernel/BKE_particle.h b/source/blender/blenkernel/BKE_particle.h
index c41a54b0ea7..649a711a2e2 100644
--- a/source/blender/blenkernel/BKE_particle.h
+++ b/source/blender/blenkernel/BKE_particle.h
@@ -87,10 +87,10 @@ typedef struct ParticleReactEvent {
}ParticleReactEvent;
typedef struct ParticleTexture{
- float ivel; /* used in reset */
- float time, life, exist, size; /* used in init */
- float pvel[3]; /* used in physics */
- float length, clump, kink; /* used in path caching */
+ float ivel; /* used in reset */
+ float time, life, exist, size; /* used in init */
+ float pvel[3]; /* used in physics */
+ float length, clump, kink, rough; /* used in path caching */
} ParticleTexture;
typedef struct BoidVecFunc{