Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFredrik Hansson <fredrikh>2021-07-24 00:46:19 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2021-07-24 00:52:25 +0300
commit2beff6197e98ec3bcf92f9473953b32fcf89c373 (patch)
tree86c6874394cbd561b31346e08e4397984839e7cd /source/blender/makesdna
parent3123f33380b35ae93afee0a30f36bc7181927b28 (diff)
Weld Modifier: add "loose_edges" option
This improve the cloth modeling workflow by allowing you to weld only the edges that are used for the sewing forces. Reviewed By: mano-wii, weasel Differential Revision: https://developer.blender.org/D10710
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 401b49f2ee8..99c346bf589 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -2023,6 +2023,7 @@ typedef struct WeldModifierData {
/* WeldModifierData->flag */
enum {
MOD_WELD_INVERT_VGROUP = (1 << 0),
+ MOD_WELD_LOOSE_EDGES = (1 << 1),
};
/* #WeldModifierData.mode */