From 9e7012995249281b041d55607e7e7408857aa8c4 Mon Sep 17 00:00:00 2001 From: Alexander Gavrilov Date: Fri, 12 Jun 2020 21:33:38 +0300 Subject: Cloth: allow forces to act parallel to cloth. Currently all force effectors can only act on cloth when the force is perpendicular to the surface. This makes sense for wind, but not for other forces; and the user may want even wind to have some friction. This changes effector code to output two force vectors - although you of course can pass the same pointer for both. The force is split between the two outputs based on a new per-effector setting. Differential Revision: https://developer.blender.org/D8017 --- source/blender/makesdna/DNA_object_force_types.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_object_force_types.h b/source/blender/makesdna/DNA_object_force_types.h index 7f022f104e6..78f645deaa2 100644 --- a/source/blender/makesdna/DNA_object_force_types.h +++ b/source/blender/makesdna/DNA_object_force_types.h @@ -92,6 +92,10 @@ typedef struct PartDeflect { * How much force is converted into "air flow", i.e. * force used as the velocity of surrounding medium. */ float f_flow; + /** How much force is reduced when acting parallel to a surface, e.g. cloth. */ + float f_wind_factor; + + char _pad0[4]; /** Noise size for noise effector, restlength for harmonic effector. */ float f_size; -- cgit v1.2.3