From 13915df48b4e4f2db67fe184bbae7bb0f31073bf Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Fri, 3 May 2019 11:42:07 +0200 Subject: [PATCH] fix(sync): fix instantiation --- operators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operators.py b/operators.py index da43044..fc4d123 100644 --- a/operators.py +++ b/operators.py @@ -511,7 +511,7 @@ def depsgraph_update(scene): # if updated_data.is_updated_transform or updated_data.is_updated_geometry: # client_instance.set( # "{}/{}".format(updated_data.id.bl_rna.name, updated_data.id.name)) - for update in updates: + for update in reversed(updates): if update.id.id == username: getattr(bpy.data, helpers.CORRESPONDANCE[update.id.__class__.__name__])[update.id.name].is_dirty= True