Fix for bug #8609: radius setting for hair child particles not symmetrical.

Bug might have actually caused more issues, there were some assumptions
that ParticleCacheKey and ParticleKey structs had members in the same order,
but the rotation was in a different place.
This commit is contained in:
Brecht Van Lommel 2008-03-26 18:34:24 +00:00
parent b37cf7d75d
commit 750836ec7d

@ -113,8 +113,8 @@ typedef struct ParticleSeam{
typedef struct ParticleCacheKey{
float co[3];
float vel[3];
float col[3];
float rot[4];
float col[3];
int steps;
} ParticleCacheKey;