fix: parent transform

fix: race  condition for COMMON objects

related to #180
This commit is contained in:
Swann
2021-03-13 18:32:20 +01:00
parent b66d0dd4ce
commit b965c80ba5
2 changed files with 13 additions and 5 deletions

View File

@ -995,7 +995,7 @@ def depsgraph_evaluation(scene):
# - if its ours or ( under common and diff), launch the
# update process
# - if its to someone else, ignore the update
if node and node.owner in [session.id, RP_COMMON]:
if node and (node.owner == session.id or node.bl_check_common):
if node.state == UP:
try:
if node.has_changed():