From e89fa4c85b8e249465158215ade49e3726a0e7a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 18 May 2018 17:31:59 +0200 Subject: Cloth Modifier: get time from depsgraph instead of scene --- source/blender/blenkernel/intern/effect.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'source/blender/blenkernel/intern/effect.c') diff --git a/source/blender/blenkernel/intern/effect.c b/source/blender/blenkernel/intern/effect.c index 00c1c82bae8..bdf6e84a3b1 100644 --- a/source/blender/blenkernel/intern/effect.c +++ b/source/blender/blenkernel/intern/effect.c @@ -261,7 +261,8 @@ void pdEndEffectors(ListBase **effectors) static void precalculate_effector(struct Depsgraph *depsgraph, EffectorCache *eff) { - unsigned int cfra = (unsigned int)(eff->scene->r.cfra >= 0 ? eff->scene->r.cfra : -eff->scene->r.cfra); + float ctime = DEG_get_ctime(depsgraph); + unsigned int cfra = (unsigned int)(ctime >= 0 ? ctime : -ctime); if (!eff->pd->rng) eff->pd->rng = BLI_rng_new(eff->pd->seed + cfra); else @@ -286,7 +287,7 @@ static void precalculate_effector(struct Depsgraph *depsgraph, EffectorCache *ef eff->flag |= PE_USE_NORMAL_DATA; } else if (eff->psys) - psys_update_particle_tree(eff->psys, eff->scene->r.cfra); + psys_update_particle_tree(eff->psys, ctime); /* Store object velocity */ if (eff->ob) { @@ -556,7 +557,7 @@ int closest_point_on_surface(SurfaceModifierData *surmd, const float co[3], floa } int get_effector_data(EffectorCache *eff, EffectorData *efd, EffectedPoint *point, int real_velocity) { - float cfra = eff->scene->r.cfra; + float cfra = DEG_get_ctime(eff->depsgraph); int ret = 0; /* In case surface object is in Edit mode when loading the .blend, surface modifier is never executed -- cgit v1.2.3