Fix T56595: Hair Dynamics stop working after saving new file
The issue was caused by NaN valid of the average spring length being stored in the file. This caused accumulation in the springs builder to also deliver NaNs, which then caused solver itself to not do anything. Not sure why these values where never initialized prior to the accumulation. Or even, why this runime data is stored in a DNA. Some sanitizing is possible here, but needs to be done with care to not disrupt Spring production.
This commit is contained in:
@@ -1285,6 +1285,11 @@ static int cloth_build_springs ( ClothModifierData *clmd, DerivedMesh *dm )
|
||||
if (!edgelist)
|
||||
return 0;
|
||||
|
||||
clmd->sim_parms->avg_spring_len = 0.0f;
|
||||
for (i = 0; i < mvert_num; i++) {
|
||||
cloth->verts[i].avg_spring_len = 0.0f;
|
||||
}
|
||||
|
||||
// structural springs
|
||||
for ( i = 0; i < numedges; i++ ) {
|
||||
spring = (ClothSpring *)MEM_callocN ( sizeof ( ClothSpring ), "cloth spring" );
|
||||
|
||||
Reference in New Issue
Block a user