Fix T64733: Error baking action

scene.update() needs to be replaced with view_layer.update() after
rBe693918d4074

note: will go over other occurances of scene.update() in a different
commit
This commit is contained in:
Philipp Oeser 2019-05-17 10:40:44 +02:00
parent 6864d0b6f1
commit dfbbc5067e
Notes: blender-bot 2023-02-14 06:00:51 +01:00
Referenced by issue #64733, Error baking action
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ def bake_action_objects_iter(
if frame is None:
break
scene.frame_set(frame)
scene.update()
bpy.context.view_layer.update()
for iter in iter_all:
iter.send(frame)
scene.frame_set(frame_back)