Fix T70126: Can't snap between objects with Rigid Body

`DEG_FOREACH_COMPONENT_IGNORE_TRANSFORM_SOLVERS` was `0`
This commit is contained in:
Germano Cavalcante 2020-03-19 13:18:17 -03:00
parent 689606887f
commit 3be7d74cba
Notes: blender-bot 2023-02-14 06:32:27 +01:00
Referenced by issue #70126, Can't snap between objects with Rigid Body
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ enum {
* object 1 transform before solver ---> solver ------> object 1 final transform
* object 2 transform before solver -----^ \------> object 2 final transform
*/
DEG_FOREACH_COMPONENT_IGNORE_TRANSFORM_SOLVERS,
DEG_FOREACH_COMPONENT_IGNORE_TRANSFORM_SOLVERS = (1 << 0),
};
void DEG_foreach_dependent_ID_component(const Depsgraph *depsgraph,
const ID *id,