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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-01-10 17:52:34 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-01-10 17:53:32 +0300
commitf572a157ba7846940012271a030de89db0a93c33 (patch)
tree108b213ca253fb018e737a22c6eebcbd2ea83f67 /release
parent80281e34fd415706971d92b2f6898b6547eca234 (diff)
Fix T59913: error saving cloth preset
thx @rombout for investigation!
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/presets.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_operators/presets.py b/release/scripts/startup/bl_operators/presets.py
index 135148af790..1351dbbd42e 100644
--- a/release/scripts/startup/bl_operators/presets.py
+++ b/release/scripts/startup/bl_operators/presets.py
@@ -382,12 +382,18 @@ class AddPresetCloth(AddPresetBase, Operator):
]
preset_values = [
+ "cloth.settings.quality",
+ "cloth.settings.mass",
"cloth.settings.air_damping",
+ "cloth.settings.bending_model",
+ "cloth.settings.tension_stiffness",
+ "cloth.settings.compression_stiffness",
+ "cloth.settings.shear_stiffness",
"cloth.settings.bending_stiffness",
- "cloth.settings.mass",
- "cloth.settings.quality",
- "cloth.settings.spring_damping",
- "cloth.settings.structural_stiffness",
+ "cloth.settings.tension_damping",
+ "cloth.settings.compression_damping",
+ "cloth.settings.shear_damping",
+ "cloth.settings.bending_damping",
]
preset_subdir = "cloth"