Skip to content

Commit

Permalink
Restore: Remove frame end offset (ynput#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilix4 authored Dec 6, 2023
1 parent 1904fe4 commit befe596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/hosts/blender/api/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def set_start_end_frames():
scene.render.fps = round(fps)
scene.render.fps_base = scene.render.fps / fps
scene.frame_start = data.get("frameStart", scene.frame_start)
scene.frame_end = data.get("frameEnd", scene.frame_end) + 1
scene.frame_end = data.get("frameEnd", scene.frame_end)
scene.render.resolution_x = data.get(
"resolutionWidth", scene.render.resolution_x
)
Expand Down

0 comments on commit befe596

Please sign in to comment.