mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Merge pull request #2168 from zhujisheng/patch-1
Update scene.py to make scene.time more accurate
This commit is contained in:
commit
81b17dd63e
1 changed files with 1 additions and 1 deletions
|
@ -541,7 +541,7 @@ class Scene(object):
|
|||
if self.skip_animations and not override_skip_animations:
|
||||
return [run_time]
|
||||
|
||||
times = np.arange(0, run_time, 1 / self.camera.fps)
|
||||
times = np.arange(0, run_time, 1 / self.camera.fps) + 1 / self.camera.fps
|
||||
|
||||
self.file_writer.set_progress_display_description(sub_desc=desc)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue