From 0eb61c799d0e98ccb92b12aea744c79a9da7e7c2 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Thu, 22 Nov 2018 11:52:38 +0100 Subject: Fix T57994: Particle Instance modifiers 'Index Layer' off by one better have this vertex color layer cover the whole 0-1 range thx @sergey for checking Maniphest Tasks: T57994 Differential Revision: https://developer.blender.org/D3976 --- source/blender/modifiers/intern/MOD_particleinstance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/modifiers/intern/MOD_particleinstance.c') diff --git a/source/blender/modifiers/intern/MOD_particleinstance.c b/source/blender/modifiers/intern/MOD_particleinstance.c index d88526e2845..b6163056fe3 100644 --- a/source/blender/modifiers/intern/MOD_particleinstance.c +++ b/source/blender/modifiers/intern/MOD_particleinstance.c @@ -511,7 +511,7 @@ static DerivedMesh *applyModifier( const int ml_index = (ml - mloop); if (mloopcols_index != NULL) { const int part_index = vert_part_index[ml->v]; - store_float_in_vcol(&mloopcols_index[ml_index], (float)part_index / psys->totpart); + store_float_in_vcol(&mloopcols_index[ml_index], (float)part_index / (float)(psys->totpart-1)); } if (mloopcols_value != NULL) { const float part_value = vert_part_value[ml->v]; -- cgit v1.2.3