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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-12-14 19:33:36 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-12-14 19:33:54 +0300
commitd3e0d7f0825fbdf503ef82e3f85b11d0faf841e8 (patch)
tree0b5f9cf3db805d5565397feecd305e8adfa8a0bf /source/blender/modifiers
parentc7cc97c7b909358eac9b0768d1af132f9f6a706c (diff)
Fix broken particle distribution after recent fix
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_util.c b/source/blender/modifiers/intern/MOD_util.c
index dca2d536a5d..63dfacf391f 100644
--- a/source/blender/modifiers/intern/MOD_util.c
+++ b/source/blender/modifiers/intern/MOD_util.c
@@ -198,7 +198,8 @@ Mesh *MOD_deform_mesh_eval_get(
LIB_ID_CREATE_NO_USER_REFCOUNT |
LIB_ID_CREATE_NO_DEG_TAG |
LIB_ID_COPY_NO_PREVIEW |
- LIB_ID_COPY_CD_REFERENCE),
+ LIB_ID_COPY_CD_REFERENCE |
+ LIB_ID_COPY_RUNTIME),
false);
mesh->runtime.deformed_only = 1;
}