Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug in animation clip export due to lag in drivers update #88

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion io_scene_dae/export_dae.py
Original file line number Diff line number Diff line change
Expand Up @@ -1666,7 +1666,12 @@ def export_animation(self, start, end, allowed=None):
tcn = []
xform_cache = {}
blend_cache = {}


# Blender updates drivers with one frame delay, causing the first frame to be wrong in the exported clip
# Jumping to the two first frames before exporting the clip fixes this issue
self.scene.frame_set(start)
self.scene.frame_set(start + 1)

# Change frames first, export objects last, boosts performance
for t in range(start, end + 1):
self.scene.frame_set(t)
Expand Down