Fix T88531: Mantaflow problem with geometry nodes

Objects modified by geometry nodes modifiers were not caught as being
"dynamic".

Now add this modifier type to the list of modifiers making them "dynamic"
in the eyes of mantaflow.

(noticed by @sebbas in chat)

Maniphest Tasks: T88531

Differential Revision: https://developer.blender.org/D11389
This commit is contained in:
Philipp Oeser 2021-05-25 16:34:10 +02:00
parent b813007a0f
commit 03c0fa1cdb
Notes: blender-bot 2023-02-13 18:36:25 +01:00
Referenced by issue #88449, Blender LTS: Maintenance Task 2.93
Referenced by issue #88531, Mantaflow problem with geometry nodes
1 changed files with 2 additions and 1 deletions

View File

@ -632,7 +632,8 @@ static bool is_static_object(Object *ob)
eModifierType_Explode,
eModifierType_Ocean,
eModifierType_ShapeKey,
eModifierType_Softbody)) {
eModifierType_Softbody,
eModifierType_Nodes)) {
return false;
}
}