Cycles: missed when renaming updated RNA

This commit is contained in:
2018-07-06 10:16:28 +02:00
parent aff8b02394
commit 6d38d82437

View File

@@ -121,9 +121,9 @@ void BlenderSync::sync_recalc(BL::Depsgraph& b_depsgraph)
/* Object */
else if (b_id.is_a(&RNA_Object)) {
BL::Object b_ob(b_id);
const bool updated_geometry = b_update->updated_geometry();
const bool updated_geometry = !b_update->is_dirty_geometry();
if (b_update->updated_transform()) {
if (!b_update->is_dirty_transform()) {
object_map.set_recalc(b_ob);
light_map.set_recalc(b_ob);
}